18 lines
451 B
TypeScript
18 lines
451 B
TypeScript
import type { App } from "vue";
|
|
import { createPinia } from "pinia";
|
|
|
|
const store = createPinia();
|
|
|
|
// 全局注册 store
|
|
export function setupStore(app: App<Element>) {
|
|
app.use(store);
|
|
}
|
|
|
|
export * from "./modules/app-store";
|
|
export * from "./modules/permission-store";
|
|
export * from "./modules/settings-store";
|
|
export * from "./modules/tags-view-store";
|
|
export * from "./modules/user-store";
|
|
export * from "./modules/dict-store";
|
|
export { store };
|