This commit is contained in:
tugcekucukoglu
2024-08-05 09:27:58 +03:00
parent 3ba6d75db2
commit 4c7b0c0f5d
101 changed files with 119 additions and 117 deletions

View File

@@ -58,7 +58,7 @@ onMounted(() => {
NodeService.getTreeNodes().then((data) => (treeSelectNodes.value = data));
});
const searchCountry = (event) => {
function searchCountry(event) {
setTimeout(() => {
if (!event.query.trim().length) {
autoFilteredValue.value = [...autoValue.value];
@@ -68,7 +68,7 @@ const searchCountry = (event) => {
});
}
}, 250);
};
}
</script>
<template>