mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat(projects): 增加路由守卫和系统错误页
This commit is contained in:
parent
0836351aa9
commit
ee471b30d3
8
src/router/guard/index.ts
Normal file
8
src/router/guard/index.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import type { Router } from 'vue-router';
|
||||||
|
|
||||||
|
export function setupRouterGuard(router: Router) {
|
||||||
|
router.beforeEach((to, from, next) => {
|
||||||
|
console.log('%c [to]-24', 'font-size:13px; background:pink; color:#bf2c9f;', to);
|
||||||
|
next();
|
||||||
|
});
|
||||||
|
}
|
@ -1,5 +1,6 @@
|
|||||||
import type { App } from 'vue';
|
import type { App } from 'vue';
|
||||||
import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router';
|
import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router';
|
||||||
|
import { setupRouterGuard } from './guard';
|
||||||
|
|
||||||
const routes: RouteRecordRaw[] = [
|
const routes: RouteRecordRaw[] = [
|
||||||
{
|
{
|
||||||
@ -10,7 +11,7 @@ const routes: RouteRecordRaw[] = [
|
|||||||
{
|
{
|
||||||
path: '/test',
|
path: '/test',
|
||||||
name: 'test',
|
name: 'test',
|
||||||
component: () => import('@/views/system/index.vue'), // 注意这里要带上 文件后缀.vue
|
component: () => import('@/views/test/index.vue'), // 注意这里要带上 文件后缀.vue
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -19,9 +20,10 @@ export const router = createRouter({
|
|||||||
history: VITE_HASH_ROUTE === 'Y' ? createWebHashHistory(VITE_BASE_URL) : createWebHistory(VITE_BASE_URL),
|
history: VITE_HASH_ROUTE === 'Y' ? createWebHashHistory(VITE_BASE_URL) : createWebHistory(VITE_BASE_URL),
|
||||||
routes,
|
routes,
|
||||||
});
|
});
|
||||||
|
|
||||||
// 安装vue路由
|
// 安装vue路由
|
||||||
export async function setupRouter(app: App) {
|
export async function setupRouter(app: App) {
|
||||||
|
// 添加路由守卫
|
||||||
|
setupRouterGuard(router);
|
||||||
app.use(router);
|
app.use(router);
|
||||||
await router.isReady(); //https://router.vuejs.org/zh/api/index.html#isready
|
await router.isReady(); //https://router.vuejs.org/zh/api/index.html#isready
|
||||||
}
|
}
|
||||||
|
7
src/views/inherit-page/not-found/index.vue
Normal file
7
src/views/inherit-page/not-found/index.vue
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<div>404</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
7
src/views/inherit-page/not-permission/index.vue
Normal file
7
src/views/inherit-page/not-permission/index.vue
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<div>404</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
7
src/views/inherit-page/service-error/index.vue
Normal file
7
src/views/inherit-page/service-error/index.vue
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<div>500</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
@ -1,7 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<h1>{{ msg }}</h1>
|
<div style="text-align: center">
|
||||||
<span>Already configured: vue3、vite3、eslint、prettier、ts、tsx、conventional、husk、lint-staged、vue-router</span>
|
<h1>{{ msg }}</h1>
|
||||||
<a href="" @click="router.push('test')">to test page</a>
|
<span>Already configured: vue3、vite3、eslint、prettier、ts、tsx、conventional、husk、lint-staged、vue-router</span>
|
||||||
|
<a href="" @click="switchPage('test')">to test page</a>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
@ -9,6 +11,10 @@ import { ref } from 'vue';
|
|||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const msg = ref('It is just a blank template.');
|
const msg = ref('It is just a blank template.');
|
||||||
|
|
||||||
|
const switchPage = (path: string) => {
|
||||||
|
router.push(path);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped></style>
|
<style lang="less" scoped></style>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>I prove that you have made the jump.</div>
|
<div style="text-align: center">I prove that you have made the jump.</div>
|
||||||
<a href="" @click="router.back()">to back</a>
|
<a href="" @click="router.back()">to back</a>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user