This commit is contained in:
2025-10-24 17:12:18 +08:00
commit 9dead7a890
2004 changed files with 298646 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import useUserStore from "@/stores/user/useUserStore";
const userStore = useUserStore();
const userInfo = userStore.userInfo;
const setSetting = async (params) => {
const success = await userStore.setUserInfo(params);
return success;
};
export { setSetting, userInfo };