first commit

This commit is contained in:
2026-02-26 09:32:03 +08:00
commit 36a8e4c51b
845 changed files with 116474 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import * as Pinia from 'pinia'
import { createPersistedState } from 'pinia-plugin-persistedstate' // 数据持久化
const store = Pinia.createPinia()
store.use(
createPersistedState({
storage: {
getItem: uni.getStorageSync,
setItem: uni.setStorageSync,
},
}),
)
export { Pinia, store }
// 模块统一导出
export * from './module/user'
export * from './module/search'
export * from './module/config'