mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
16 lines
331 B
TypeScript
16 lines
331 B
TypeScript
import type { App } from 'vue'
|
|
import piniaPluginPersist from 'pinia-plugin-persist'
|
|
|
|
export * from './app'
|
|
export * from './auth'
|
|
export * from './route'
|
|
export * from './tab'
|
|
|
|
// 安装pinia全局状态库
|
|
|
|
export function installPinia(app: App) {
|
|
const pinia = createPinia()
|
|
pinia.use(piniaPluginPersist)
|
|
app.use(pinia)
|
|
}
|