mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-uniapp
synced 2025-08-10 01:12:45 +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
|