2022-06-09 20:31:51 +08:00
|
|
|
import type { App } from 'vue'
|
2021-12-11 11:46:10 +08:00
|
|
|
import { createPinia } from 'pinia'
|
2022-02-19 09:46:33 +08:00
|
|
|
import piniaPluginPersist from 'pinia-plugin-persist'
|
2021-12-11 11:46:10 +08:00
|
|
|
|
|
|
|
const store = createPinia()
|
|
|
|
|
2022-02-19 09:46:33 +08:00
|
|
|
store.use(piniaPluginPersist)
|
|
|
|
|
2022-06-09 20:31:51 +08:00
|
|
|
export const setupStore = (app: App<Element>) => {
|
|
|
|
app.use(store)
|
2021-12-11 11:46:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export { store }
|