generator-code-web/src/store/index.ts

12 lines
299 B
TypeScript
Raw Normal View History

2025-04-05 13:56:32 +08:00
import { createPinia } from 'pinia';
2025-04-10 23:31:35 +08:00
import piniaPluginPersistedState from 'pinia-plugin-persistedstate';
2025-04-05 13:56:32 +08:00
import type { App } from 'vue';
2025-04-10 23:31:35 +08:00
const pinia = createPinia();
2025-04-05 13:56:32 +08:00
// 全局注册 store
export function setupStore(app: App<Element>) {
2025-04-10 23:31:35 +08:00
pinia.use(piniaPluginPersistedState);
app.use(pinia);
2025-04-05 13:56:32 +08:00
}