Fix static destructuring from reactive source in MyAccount and ModalAccountInfo

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 13:51:23 +08:00
parent 8f610f1244
commit 3db725e52c
2 changed files with 10 additions and 5 deletions
@@ -56,7 +56,10 @@ import Badge from "../../components/StatusBadge.vue";
const acctMgmtStore = useAcctMgmtStore();
const visitTime = ref(0);
const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser);
const { username, name, is_admin, is_active } = currentViewingUser.value;
const username = computed(() => currentViewingUser.value.username);
const name = computed(() => currentViewingUser.value.name);
const is_admin = computed(() => currentViewingUser.value.is_admin);
const is_active = computed(() => currentViewingUser.value.is_active);
onBeforeMount(async () => {
await acctMgmtStore.getUserDetail(currentViewingUser.value.username);