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-09-07 17:03:59 +08:00
|
|
|
export { useThemeStore, useAppStore, useAuthStore } from './modules';
|