This commit is contained in:
kakkokari-gtyih 2025-09-06 13:18:48 +09:00
parent ef9555fdb4
commit 79dc0e682d
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ function show() {
text: option.label,
active: computed(() => model.value === option.value),
action: () => {
model.value = option.value;
model.value = option.value as MODELT;
},
});
}
@ -182,7 +182,7 @@ function show() {
text: item.label,
active: computed(() => model.value === item.value),
action: () => {
model.value = item.value;
model.value = item.value as MODELT;
},
});
}