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/common'; export * from './modules/upload'; export { store };