2023-02-11 00:44:00 +08:00
|
|
|
import type { App } from 'vue'
|
|
|
|
import { createPinia } from 'pinia'
|
2024-02-29 18:52:46 +08:00
|
|
|
import piniaPersist from 'pinia-plugin-persist'
|
2023-02-11 00:44:00 +08:00
|
|
|
|
|
|
|
const store = createPinia()
|
2024-02-29 18:52:46 +08:00
|
|
|
store.use(piniaPersist)
|
2023-02-11 00:44:00 +08:00
|
|
|
|
|
|
|
export const setupStore = (app: App<Element>) => {
|
|
|
|
app.use(store)
|
|
|
|
}
|
|
|
|
|
|
|
|
export { store }
|