Vue访问不存在的路由,重定向跳转
Vue访问不存在的路由,重定向跳转src/router/index.jsimport Vue from 'vue'import Router from 'vue-router'Vue.use(Router)// 重加载push方法,解决报错const originalPush = Router.prototype.pushRouter.prototype.push = function push
·
Vue访问不存在的路由,重定向跳转
src/router/index.js
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
// 重加载push方法,解决报错
const originalPush = Router.prototype.push
Router.prototype.push = function push (location) {
return originalPush.call(this, location).catch(err => err)
}
export default new Router({
routes: [
{
path: '/',
name: 'Home',
component: () => import('@/components/Home')
},
{
path: '/demo',
name: 'Demo',
component: () => import('@/components/Demo')
},
{
path: '/404',
name: '404',
component: () => import('@/components/404')
},
{
path: '*', // 重定向页面地址
redirect: '/'
}
]
})
更多推荐
已为社区贡献28条内容
所有评论(0)