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

10 lines
190 B
TypeScript
Raw Normal View History

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