潘志宝
9 天以前 ca22cdd5550cfa0defb0f430c538698182cdaec1
提交 | 用户 | 时间
820397 1 import type { App } from 'vue'
H 2 import { createPinia } from 'pinia'
3 import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
4
5 const store = createPinia()
6 store.use(piniaPluginPersistedstate)
7
8 export const setupStore = (app: App<Element>) => {
9   app.use(store)
10 }
11
12 export { store }