index.js 224 B

123456789101112
  1. import { createPinia } from 'pinia'
  2. const store = createPinia()
  3. // 全局注册 store
  4. export function setupStore(app) {
  5. app.use(store)
  6. }
  7. export * from './modules/app'
  8. export * from './modules/tagsView'
  9. export { store }