import type { App } from 'vue'; import { createPinia } from 'pinia'; export * from './auth'; const store = createPinia(); export const setupStore = (app: App) => { app.use(store); }; export { store };