您现在的位置是:首页 > 网站制作 > vue.js心得vue.js心得
执行permission.js
蒙xs2021-07-19【vue.js心得】人已围观
简介登录检测,每次都获取用户消息
1.在main同目录创建permission.js
import router from "./router";
router.beforeEach(async (to, from, next) => {
if(to.path == '/login'){
next();
} else{
console.log('获取userfore')//获取用户消息
next();
}
});
2.在main.js引入
import '@/permission' // permission control
import router from "./router";
router.beforeEach(async (to, from, next) => {
if(to.path == '/login'){
next();
} else{
console.log('获取userfore')//获取用户消息
next();
}
});
2.在main.js引入
import '@/permission' // permission control
Tags:
很赞哦! ()
下一篇:vue实时搜索(模糊搜索)