use ref properly

This commit is contained in:
ThatOneCalculator 2022-09-13 17:41:58 -07:00
parent 594e849850
commit df16580d87

View file

@ -45,7 +45,7 @@ const props = defineProps<{
} }
}>(); }>();
const users = ref<any[]>([]); const users.value = ref<any[]>([]);
const group = ref<any>(); const group = ref<any>();
const router = useRouter(); const router = useRouter();
@ -59,11 +59,11 @@ async function fetch() {
os.api('users/groups/show', { os.api('users/groups/show', {
groupId: props.groupId, groupId: props.groupId,
}).then(gp => { }).then(gp => {
group = gp; group.value = gp;
os.api('users/show', { os.api('users/show', {
userIds: group.userIds userIds: group.userIds
}).then(us => { }).then(us => {
users = us; users.value = us;
}); });
}); });
} }
@ -84,7 +84,7 @@ function removeUser(user) {
groupId: group.id, groupId: group.id,
userId: user.id userId: user.id
}).then(() => { }).then(() => {
users = users.filter(x => x.id !== user.id); users.value = users.filter(x => x.id !== user.id);
}); });
} }