diff --git a/src/router/guard/index.ts b/src/router/guard/index.ts new file mode 100644 index 0000000..ebd7355 --- /dev/null +++ b/src/router/guard/index.ts @@ -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(); + }); +} diff --git a/src/router/index.ts b/src/router/index.ts index dbd4460..70c8542 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,5 +1,6 @@ import type { App } from 'vue'; import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router'; +import { setupRouterGuard } from './guard'; const routes: RouteRecordRaw[] = [ { @@ -10,7 +11,7 @@ const routes: RouteRecordRaw[] = [ { path: '/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), routes, }); - // 安装vue路由 export async function setupRouter(app: App) { + // 添加路由守卫 + setupRouterGuard(router); app.use(router); await router.isReady(); //https://router.vuejs.org/zh/api/index.html#isready } diff --git a/src/views/inherit-page/not-found/index.vue b/src/views/inherit-page/not-found/index.vue new file mode 100644 index 0000000..51432cc --- /dev/null +++ b/src/views/inherit-page/not-found/index.vue @@ -0,0 +1,7 @@ + + 404 + + + + + diff --git a/src/views/inherit-page/not-permission/index.vue b/src/views/inherit-page/not-permission/index.vue new file mode 100644 index 0000000..51432cc --- /dev/null +++ b/src/views/inherit-page/not-permission/index.vue @@ -0,0 +1,7 @@ + + 404 + + + + + diff --git a/src/views/inherit-page/service-error/index.vue b/src/views/inherit-page/service-error/index.vue new file mode 100644 index 0000000..3a91663 --- /dev/null +++ b/src/views/inherit-page/service-error/index.vue @@ -0,0 +1,7 @@ + + 500 + + + + + diff --git a/src/views/login/index.vue b/src/views/login/index.vue index e5127e0..1ffbe01 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -1,7 +1,9 @@ - {{ msg }} - Already configured: vue3、vite3、eslint、prettier、ts、tsx、conventional、husk、lint-staged、vue-router - to test page + + {{ msg }} + Already configured: vue3、vite3、eslint、prettier、ts、tsx、conventional、husk、lint-staged、vue-router + to test page + diff --git a/src/views/system/index.vue b/src/views/test/index.vue similarity index 72% rename from src/views/system/index.vue rename to src/views/test/index.vue index 6e28a43..ec8461f 100644 --- a/src/views/system/index.vue +++ b/src/views/test/index.vue @@ -1,5 +1,5 @@ - I prove that you have made the jump. + I prove that you have made the jump. to back