feat(projects): 增加路由守卫和系统错误页

This commit is contained in:
‘chen.home’ 2022-08-06 12:34:42 +08:00
parent 0836351aa9
commit ee471b30d3
7 changed files with 43 additions and 6 deletions

View 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();
});
}

View File

@ -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
} }

View File

@ -0,0 +1,7 @@
<template>
<div>404</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped></style>

View File

@ -0,0 +1,7 @@
<template>
<div>404</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped></style>

View File

@ -0,0 +1,7 @@
<template>
<div>500</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped></style>

View File

@ -1,7 +1,9 @@
<template> <template>
<h1>{{ msg }}</h1> <div style="text-align: center">
<span>Already configured: vue3vite3eslintprettiertstsxconventionalhusklint-stagedvue-router</span> <h1>{{ msg }}</h1>
<a href="" @click="router.push('test')">to test page</a> <span>Already configured: vue3vite3eslintprettiertstsxconventionalhusklint-stagedvue-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>

View File

@ -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>