赞
踩
permission.js文件中添加‘/SmallWaterDrop’为要配的页面为白名单,然后用路由守卫判断,要进的页面是不是想要加入白名单的页面,如果是的话,就next()进入页面,不需要登录
const whiteList = ['/login','/SmallWaterDrop']
router.beforeEach(async(to, from, next) => {
console.log(to.path)
console.log(14,whiteList.indexOf(to.path) !== -1)
if (whiteList.indexOf(to.path) !== -1) {
next();
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。