2021-12-11 11:46:10 +08:00
|
|
|
import type { App } from 'vue'
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
|
|
|
const store = createPinia()
|
|
|
|
|
2022-01-15 14:24:50 +08:00
|
|
|
export const setupStore = (app: App<Element>) => {
|
2021-12-11 11:46:10 +08:00
|
|
|
app.use(store)
|
|
|
|
}
|
|
|
|
|
|
|
|
export { store }
|