企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] #### 路由守卫 全局守卫 1. 路由守卫判断用户登录状态 ~~~ router.beforeEach((to, from, next) => { // 本地存储登录状态 const isLogin = localStorage.getItem('ele_login') ? true : false // 判断当前访问路由是否 === login if (to.path === '/login') { next(); } else { // 判断登录状态 isLogin ? next() : next('/login') } }) ~~~