From 7d9d3723058f9737cd42f1ddeee5975db0945460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=A1=E9=A3=8E?= <18012261618@126.com> Date: Thu, 28 Dec 2023 13:46:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8D=95=E9=80=89=E7=BB=84=E5=86=85?= =?UTF-8?q?=E9=83=A8=E5=80=BC=E5=88=9D=E5=A7=8B=E5=80=BC=E8=B5=8B=E5=80=BC?= =?UTF-8?q?=E9=94=99=E8=AF=AF=20(#252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/radio-group/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/radio-group/index.js b/src/radio-group/index.js index 6a879b47d..4ccdfd5b2 100644 --- a/src/radio-group/index.js +++ b/src/radio-group/index.js @@ -24,7 +24,7 @@ export default createComponent({ }, data() { return { - datatemp: this.value || null, + datatemp: this.value ?? null, options: [], }; },