mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-06 03:57:47 +08:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
import type { App } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import piniaPersist from 'pinia-plugin-persist'
|
|
|
|
const store = createPinia()
|
|
store.use(piniaPersist)
|
|
|
|
export function setupStore(app: App<Element>) {
|
|
app.use(store)
|
|
}
|
|
|
|
export { store }
|