11 lines
188 B
TypeScript
Raw Permalink Normal View History

2022-12-05 23:01:12 +08:00
import { createPinia } from 'pinia'
import type { App } from 'vue'
const store = createPinia()
export function bootstrapStore(app: App) : void {
app.use(store)
}
export default store