refactor: refs #8683 enhance sorting logic in VnSelect component #1522

Merged
alexm merged 47 commits from 8683-vnSelectSortByOptionLabel into dev 2025-03-25 13:15:00 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit a07afe3a94 - Show all commits

View File

@ -152,6 +152,10 @@ const value = computed({
},
});
const computedSortBy = computed(() => {
return $props.sortBy || $props.optionLabel;
});
watch(options, (newValue) => {
setOptions(newValue);
});
@ -186,7 +190,7 @@ function findKeyInOptions() {
}
function setOptions(data) {
data = dataByOrder(data, $props.sortBy);
data = dataByOrder(data, computedSortBy.value);
myOptions.value = JSON.parse(JSON.stringify(data));
myOptionsOriginal.value = JSON.parse(JSON.stringify(data));
emit('update:options', data);