v1.0.0
位置:src\permission.js
router.beforeEach((to, from, next) => {
if (to.matched.length === 0) { // 未匹配
from.name ? next({ name: from.name }) : next(''); // from指上一页,''指某个路由,可以是/404
}
// ... ...
}
v1.0.0
位置:src\permission.js
router.beforeEach((to, from, next) => {
if (to.matched.length === 0) { // 未匹配
from.name ? next({ name: from.name }) : next(''); // from指上一页,''指某个路由,可以是/404
}
// ... ...
}