fix: 🐛 修复图标选取组件和字典复选组件的使用bug

修复图标选取组件和字典复选组件的使用bug
This commit is contained in:
胡少翔
2024-10-23 10:46:41 +08:00
parent 253502018f
commit ca81612981
3 changed files with 7 additions and 4 deletions

View File

@@ -123,7 +123,7 @@ watch(
const matchedOption = newOptions.find(
(option) => option.value === selectedValue.value
);
if (!matchedOption) {
if (!matchedOption && props.type !== "checkbox") {
selectedValue.value = ""; // 如果找不到匹配项,清空选中
}
}