Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit 08e5e70

Browse files
committed
Added vertical prop to checkbox-group
1 parent 197cc98 commit 08e5e70

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/components/CheckboxGroup/main.vue

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,17 @@ export default {
6363
type: Boolean,
6464
default: false,
6565
},
66+
vertical: {
67+
type: Boolean,
68+
default: false,
69+
},
70+
},
71+
computed: {
72+
classes() {
73+
return [
74+
{ 'checkbox-group--vertical': this.vertical },
75+
];
76+
},
6677
},
6778
data() {
6879
return {

0 commit comments

Comments
 (0)