// @ts-ignore import type { App } from 'vue'; import { createPinia } from 'pinia'; const store = createPinia(); export function setupStore(app: App) { app.use(store); } // @ts-ignore uni.$store = store; export { store };