vue router 404怎么实现的

vue-router怎么实现不在路由表里的请求跳转404的?

蝴蝶不菲
浏览 987回答 2
2回答

慕森卡

摇曳的蔷薇

使用了history模式后,需要在 Vue 应用里面覆盖所有的路由情况,然后再给出一个 404 页面。const router = new VueRouter({  mode: 'history',  routes: [     { path: '*', component: NotFoundComponent }   ] })
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js