index.ts 270 B

12345678910111213
  1. import type { App } from 'vue'
  2. import { createPinia } from 'pinia'
  3. import piniaPluginPersist from 'pinia-plugin-persist'
  4. const store = createPinia()
  5. store.use(piniaPluginPersist)
  6. export const setupStore = (app: App<Element>) => {
  7. app.use(store)
  8. }
  9. export { store }