fix
This commit is contained in:
parent
ef9555fdb4
commit
79dc0e682d
|
@ -173,7 +173,7 @@ function show() {
|
||||||
text: option.label,
|
text: option.label,
|
||||||
active: computed(() => model.value === option.value),
|
active: computed(() => model.value === option.value),
|
||||||
action: () => {
|
action: () => {
|
||||||
model.value = option.value;
|
model.value = option.value as MODELT;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -182,7 +182,7 @@ function show() {
|
||||||
text: item.label,
|
text: item.label,
|
||||||
active: computed(() => model.value === item.value),
|
active: computed(() => model.value === item.value),
|
||||||
action: () => {
|
action: () => {
|
||||||
model.value = item.value;
|
model.value = item.value as MODELT;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue