鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 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 }