mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import piniaPluginPersist from 'pinia-plugin-persist'
|
|
import type { App } from 'vue'
|
|
|
|
export function setupStore(app: App) {
|
|
const pinia = createPinia()
|
|
pinia.use(piniaPluginPersist)
|
|
app.use(pinia)
|
|
}
|
|
|
|
export * from './modules'
|