mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2025-01-20 04:00:06 +08:00
14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
import type { App } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import piniaPluginPersist from 'pinia-plugin-persist'
|
|
|
|
const store = createPinia()
|
|
|
|
store.use(piniaPluginPersist)
|
|
|
|
export const setupStore = (app: App<Element>) => {
|
|
app.use(store)
|
|
}
|
|
|
|
export { store }
|