update
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user