import { createPinia } from 'pinia'; import type { App } from 'vue'; const store = createPinia(); // 全局注册 store export function setupStore(app: App) { app.use(store); } export { store };