!254 update 优化 字典组件值宽松匹配values的问题

Merge pull request !254 from 加多宝/N/A
This commit is contained in:
疯狂的狮子Li
2025-12-23 01:40:27 +00:00
committed by Gitee

View File

@@ -88,7 +88,7 @@ const handleArray = (array: Array<string | number>) => {
}; };
const isValueMatch = (itemValue: any) => { const isValueMatch = (itemValue: any) => {
return this.values.some(val => val == itemValue) return values.value.some(val => val == itemValue)
} }
</script> </script>