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

13
store/modules/config.js Normal file
View File

@@ -0,0 +1,13 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
export const useConfigStore = defineStore('config', () => {
const config = ref()
const setConfig = (val) => {
config.value = val
}
return {
config,
setConfig
}
})