diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts index fba0728..575af0f 100644 --- a/src/store/modules/user.ts +++ b/src/store/modules/user.ts @@ -1,6 +1,6 @@ import { defineStore } from 'pinia'; import { TOKEN_NAME } from '@/config/global'; -import { store, usePermissionStore } from '@/store'; +import { store } from '@/store'; const InitUserInfo = { roles: [], @@ -79,12 +79,6 @@ export const useUserStore = defineStore('user', { this.token = ''; }, }, - persist: { - afterRestore: (ctx) => { - const permissionStore = usePermissionStore(); - permissionStore.initRoutes(ctx.store.roles); - }, - }, }); export function getUserStore() {