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

Signed-off-by: 加多宝 <945324621@qq.com>
This commit is contained in:
加多宝 2025-12-20 08:35:49 +00:00 committed by Gitee
parent 56bb05d547
commit 3008a8d7b0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

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