From 78f51362b9aa00ea1b6ef31a76115d210c562ee9 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Wed, 9 Aug 2017 15:26:20 -0300 Subject: [PATCH] fix(form-radio): Add missing classes in button mode --- lib/components/form-radio.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/components/form-radio.vue b/lib/components/form-radio.vue index e5c81ed5e4b..a7d99bf6227 100644 --- a/lib/components/form-radio.vue +++ b/lib/components/form-radio.vue @@ -89,7 +89,8 @@ }, btnGroupClasses() { return [ - this.size ? `button-group-${this.size}` : null, + 'btn-group', + this.size ? `btn-group-${this.size}` : null, this.stacked ? 'btn-group-vertical' : '' ]; },