首次提交

This commit is contained in:
2023-06-04 20:01:58 +08:00
parent 00c64c53bb
commit 587f078d21
560 changed files with 106725 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import { defineStore } from "pinia"
const useDocStore = defineStore("doc", {
state: () => ({
auth: undefined,
appId: undefined,
appSecret: undefined,
globalParams: undefined
}),
getters: {
setDoc(state) {
return { ...state }
}
},
actions: {
setInfo(data) {
this.$patch(data)
}
}
})
export default useDocStore