2 Star 1 Fork 4

周大大/智慧农场

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
router.js 532 Bytes
一键复制 编辑 原始数据 按行查看 历史
reborn-zhou 提交于 2022-04-26 09:15 . 启动页设为login
// router.js
import {
RouterMount,
createRouter
} from 'uni-simple-router';
const router = createRouter({
platform: process.env.VUE_APP_PLATFORM,
routes: [...ROUTES]
});
//全局路由前置守卫
router.beforeEach((to, from, next) => {
if (to.path === '/pages/login/login'){
const token = uni.getStorageSync('token')
if (token) {
next('/pages/index/index')
} else next()
}else next()
});
// 全局路由后置守卫
router.afterEach((to, from) => {
console.log('跳转结束')
})
export {
router,
RouterMount
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lablezyh/smart-farm.git
[email protected]:lablezyh/smart-farm.git
lablezyh
smart-farm
智慧农场
master

搜索帮助