19 lines
379 B
TypeScript
19 lines
379 B
TypeScript
|
import { createPinia } from 'pinia'
|
||
|
import { createPersistedState } from 'pinia-plugin-persistedstate' // 数据持久化
|
||
|
|
||
|
const store = createPinia()
|
||
|
store.use(
|
||
|
createPersistedState({
|
||
|
storage: {
|
||
|
getItem: uni.getStorageSync,
|
||
|
setItem: uni.setStorageSync,
|
||
|
},
|
||
|
}),
|
||
|
)
|
||
|
|
||
|
export default store
|
||
|
|
||
|
// 模块统一导出
|
||
|
export * from './user'
|
||
|
export * from './count'
|