vue.js 初次登录网站点击键盘enter键会导致页面路由跳转到根路径,刷新一下页面再按enter就不会跳转?
vue.js 初次登录网站点击键盘enter键会导致页面路由跳转到根路径,刷新一下页面再按enter就不会跳转了,这是怎么回事呢?
以下是我的路由拦截
// 路由拦截
router.beforeEach((to, from, next) => {
if (to.path === '/' || to.path === '/register' || to.path === '/resetpwd') {
next()
} else if (!window.sessionStorage.token) {
router.push('/')
} else {
next()
}
})
慕哥6287543
相关分类