简单的路由守卫
程序员文章站
2022-03-25 09:53:01
...
需要在配置路由时给路由添加meta,如下:
component:'组件',
meta:{
isLogin:true
}
// 路由守卫
router.beforeEach((to, from, next) => {
// console.log(to)
if (to.matched.some(res => res.meta.isLogin)) { //判断是否需要登录
if (jsCookie.get('AdminToken')) {
next();
} else {
next({
path: "/",
query: {
redirect: to.fullPath
}
});
}
} else {
next()
}
});
上一篇: go语言strings包