feat: 系统引导使用接口变更

This commit is contained in:
TsMask
2024-05-07 16:27:45 +08:00
parent 60a26dd015
commit b76fed7dcf
5 changed files with 30 additions and 20 deletions

View File

@@ -161,7 +161,7 @@ router.beforeEach(async (to, from, next) => {
}
console.log(to.path);
// 需要系统引导跳转
if (appStore.sysGuide && to.path !== '/quick-start') {
if (appStore.bootloader && to.path !== '/quick-start') {
next({ name: 'QuickStart' });
}