This commit is contained in:
2025-05-13 10:45:51 +08:00
parent ce0587d2b6
commit ddfd747704
12 changed files with 208 additions and 18 deletions

View File

@@ -18,7 +18,7 @@ const list = reactive([]);
const modelValue = defineModel();
const change = ({detail: {value}}) => {
modelValue.value = list[value].id;
modelValue.value = list.filter(v => !v.hidden)[value].id;
}
onMounted(() => {