(14)Vue Router监控全局路由配置404拦截页面

306 阅读1分钟

自定义404组件

1683253885823.png

全路径监控

//--router/index.ts
const routes: RouteRecordRaw[] = [{
//...其它路由
{
    path: '/:pathMatch(.*)*',
    name: 'NotFound', 
    component: () => import('@/views/error/404.vue')
}]

启动测试

npm run dev

1683254024536.png