This commit is contained in:
2026-04-28 00:08:04 +08:00
commit 26dba79969
363 changed files with 47846 additions and 0 deletions

9
store/index.js Normal file
View File

@@ -0,0 +1,9 @@
import { createPinia } from 'pinia'
import { useUserStore } from './modules/user'
import { useConfigStore } from './modules/config'
const pinia = createPinia()
export default pinia
export { useUserStore, useConfigStore }