2022-12-05 23:01:12 +08:00

11 lines
188 B
TypeScript

import { createPinia } from 'pinia'
import type { App } from 'vue'
const store = createPinia()
export function bootstrapStore(app: App) : void {
app.use(store)
}
export default store