import { createPinia } from 'pinia'; import type { App } from 'vue'; const store = createPinia(); export function setupStore(app: App) { app.use(store); return store ; } export { store };