admin管理员组文章数量:1325133
router
前置路由守卫
main.js 配置
import router from './router';const app = createApp(App);
app.use(router);
// 白名单
const whiteList = ['/'];
router.beforeEach((to, form, next) => {if (whiteList.includes(to.path) || localStorage.getItem('vue3Token')) {next();} else {next('/');}
});
app.mount('#app');
to: Route, 要进入的;
from: Route,从哪离开的;
next(): todo;
next(false): 中断当前的导航。
next('/') 或者 next({ path: '/' }): 跳转到一个不同的地址。
本文标签: router
版权声明:本文标题:router 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1693629879a233434.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论