2021-05-29 03:02:15 +08:00
|
|
|
import type { App } from 'vue';
|
2021-08-13 14:22:35 +08:00
|
|
|
import { createPinia } from 'pinia';
|
2021-05-29 03:02:15 +08:00
|
|
|
|
2021-08-13 14:22:35 +08:00
|
|
|
export const store = createPinia();
|
|
|
|
|
|
|
|
export function setupStore(app: App) {
|
|
|
|
app.use(store);
|
2021-05-29 03:02:15 +08:00
|
|
|
}
|
|
|
|
|
2021-11-04 15:01:06 +08:00
|
|
|
export * from './modules';
|