fix: auto select the first element in completion

This commit is contained in:
Louis-Dominique Dubeau 2023-07-29 19:38:51 -04:00
parent 53421bcbfd
commit 133f69f607

View file

@ -430,6 +430,7 @@ function chooseUser() {
onUpdated(() => { onUpdated(() => {
setPosition(); setPosition();
items.value = suggests.value?.children ?? []; items.value = suggests.value?.children ?? [];
selectNext();
}); });
onMounted(() => { onMounted(() => {
@ -448,6 +449,7 @@ onMounted(() => {
exec(); exec();
}); });
}, },
{ immediate: true },
); );
}); });
}); });