This commit is contained in:
2025-07-15 18:02:29 +08:00
parent 2038ddc617
commit d636050aac
65 changed files with 17885 additions and 103 deletions
+14
View File
@@ -0,0 +1,14 @@
import {defineStore} from "pinia";
import {ref} from "vue";
export const useUserStore = defineStore('userStore',() => {
let userInfo = ref({})
function setUserInfo(u){
userInfo.value = u
}
return {userInfo,setUserInfo}
})