(14)Vue Router监控全局路由配置404拦截页面 明思梨 2023-05-05 306 阅读1分钟 自定义404组件 全路径监控 //--router/index.ts const routes: RouteRecordRaw[] = [{ //...其它路由 { path: '/:pathMatch(.*)*', name: 'NotFound', component: () => import('@/views/error/404.vue') }] 启动测试 npm run dev