2023-11-29 feat: 持久化缓存

This commit is contained in:
YunaiV 2024-02-29 23:14:47 +08:00
parent 8f14355903
commit 3be088e370
6 changed files with 10 additions and 11 deletions

View File

@ -55,7 +55,7 @@
"mitt": "^3.0.1", "mitt": "^3.0.1",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"pinia": "^2.1.7", "pinia": "^2.1.7",
"pinia-plugin-persist": "^1.0.0", "pinia-plugin-persistedstate": "^3.2.0",
"qrcode": "^1.5.3", "qrcode": "^1.5.3",
"qs": "^6.11.2", "qs": "^6.11.2",
"steady-xml": "^0.1.0", "steady-xml": "^0.1.0",

View File

@ -1,9 +1,9 @@
import type { App } from 'vue' import type { App } from 'vue'
import { createPinia } from 'pinia' import { createPinia } from 'pinia'
import piniaPersist from 'pinia-plugin-persist' import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
const store = createPinia() const store = createPinia()
store.use(piniaPersist) store.use(piniaPluginPersistedstate)
export const setupStore = (app: App<Element>) => { export const setupStore = (app: App<Element>) => {
app.use(store) app.use(store)

View File

@ -268,7 +268,8 @@ export const useAppStore = defineStore('app', {
setFooter(footer: boolean) { setFooter(footer: boolean) {
this.footer = footer this.footer = footer
} }
} },
persist: false
}) })
export const useAppStoreWithOut = () => { export const useAppStoreWithOut = () => {

View File

@ -10,7 +10,6 @@ interface LockState {
lockInfo: lockInfo lockInfo: lockInfo
} }
// TODO 芋艿:【锁屏】这里有报错,后续解决下
export const useLockStore = defineStore('lock', { export const useLockStore = defineStore('lock', {
state: (): LockState => { state: (): LockState => {
return { return {
@ -41,10 +40,7 @@ export const useLockStore = defineStore('lock', {
} }
} }
}, },
persist: { persist: true
enabled: true,
strategies: [{ key: 'lock', storage: localStorage }]
}
}) })
export const useLockStoreWithOut = () => { export const useLockStoreWithOut = () => {

View File

@ -59,7 +59,8 @@ export const usePermissionStore = defineStore('permission', {
setMenuTabRouters(routers: AppRouteRecordRaw[]): void { setMenuTabRouters(routers: AppRouteRecordRaw[]): void {
this.menuTabRouters = routers this.menuTabRouters = routers
} }
} },
persist: false
}) })
export const usePermissionStoreWithOut = () => { export const usePermissionStoreWithOut = () => {

View File

@ -132,7 +132,8 @@ export const useTagsViewStore = defineStore('tagsView', {
} }
} }
} }
} },
persist: false
}) })
export const useTagsViewStoreWithOut = () => { export const useTagsViewStoreWithOut = () => {