mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-uniapp
synced 2025-08-09 08:52:42 +08:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
![]() |
// src/store/index.ts
|
||
|
import { createPinia } from 'pinia'
|
||
|
import piniaPersist from 'pinia-plugin-persistedstate' // 数据持久化
|
||
|
|
||
|
const store = createPinia()
|
||
|
store.use(piniaPersist)
|
||
|
|
||
|
export default store
|