fix(IconSelect component): 🐛 修复《IconSelect》切换 Tab name丢失,导致的element图标回显不正确。

This commit is contained in:
lostelk
2025-01-21 15:12:14 +08:00
parent 4b86d26070
commit e769d37523

View File

@@ -126,7 +126,7 @@ function loadIcons() {
}
function handleTabClick(tabPane: any) {
activeTab.value = tabPane.name;
activeTab.value = tabPane.props.name;
filterIcons();
}