Skip to content

Commit 7d461a5

Browse files
authored
fix: 🐛 修复 wd-select-picker 组件单选搜索高亮 class 错误
1 parent 2e124b2 commit 7d461a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/uni_modules/wot-design-uni/components/wd-select-picker/wd-select-picker.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<wd-radio :value="item[valueKey]" :disabled="item.disabled">
8686
<block v-if="filterable && filterVal">
8787
<block v-for="text in item[labelKey]" :key="text.label">
88-
<text :clsss="`${text.type === 'active' ? 'wd-select-picker__text-active' : ''}`">{{ text.label }}</text>
88+
<text :class="`${text.type === 'active' ? 'wd-select-picker__text-active' : ''}`">{{ text.label }}</text>
8989
</block>
9090
</block>
9191
<block v-else>

0 commit comments

Comments
 (0)