From 71820144a810c779194374c24cc9f6509b234db0 Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Fri, 14 Dec 2018 18:23:00 +0300 Subject: [PATCH] No need to set focused as onFocus will do it --- src/components/radiobutton/RadioButton.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/radiobutton/RadioButton.vue b/src/components/radiobutton/RadioButton.vue index 8b9a7ce1e..0b0f77d56 100644 --- a/src/components/radiobutton/RadioButton.vue +++ b/src/components/radiobutton/RadioButton.vue @@ -38,7 +38,6 @@ export default { this.$emit('click', event); this.$emit('input', this.value); this.$refs.input.focus(); - this.focused = true; if (!this.checked) { this.$emit('change', event);