From 9cfe497a40696a5e0c7dc391817f0a843e465b44 Mon Sep 17 00:00:00 2001 From: ransheng Date: Tue, 3 Sep 2019 17:17:03 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20options=E4=B8=BAkey/value=E5=BD=A2?= =?UTF-8?q?=E5=BC=8F=E6=97=B6=EF=BC=8C=E9=80=89=E6=8B=A9=E5=AD=90=E9=A1=B9?= =?UTF-8?q?=E6=B8=85=E7=A9=BA=20fillValue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/radio/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/radio/index.vue b/src/components/radio/index.vue index cbdf1949b..b05eef723 100755 --- a/src/components/radio/index.vue +++ b/src/components/radio/index.vue @@ -80,7 +80,7 @@ export default { function contains (a, obj) { var i = a.length while (i--) { - if (a[i] === obj) { + if (getKey(a[i]) === obj) { return true } }