vue 实现登录过后,所有的页面无需登录, 未登录。访问任何页面的地址都调到登录页,实现思路,
项目使用的 是vue2.0 + axios,
黄舟2017-05-19 10:38:19
在路由配置中,需要登录的路由加上
meta: { requiresAuth: true }
在main.js中判断用户是否登录,未登录跳转到登录页
router.beforeEach((to, from, next) => {
if (to.matched.some(record => record.meta.requiresAuth)) {
//这里判断用户是否登录,我例子中是验证本地存储是否有token
if (!localStorage.token) {
next({
path: '/login',
query: { redirect: to.fullPath }
})
} else {
next()
}
} else {
next() // 确保一定要调用 next()
}
})