mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 15:57:17 +08:00
11 lines
260 B
Go
11 lines
260 B
Go
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
|
import type { App } from 'vue'
|
|
|
|
export async function setupStore(app: App) {
|
|
const pinia = createPinia()
|
|
pinia.use(piniaPluginPersistedstate)
|
|
app.use(pinia)
|
|
}
|
|
|
|
export * from './modules'
|