This commit is contained in:
2025-09-08 16:36:33 +08:00
parent fb19cc6234
commit 503d716ddc

View File

@@ -0,0 +1,10 @@
import type { App } from 'vue'
import { createPinia } from 'pinia'
const store = createPinia()
export const setupStore = (app: App<Element>) => {
app.use(store)
}
export { store }