按钮组

单组件引入

import <name> from ‘vucc/button-group’;

示例




代码 V

<v-button-group :data="buttonGroupList"></v-button-group>


// button group
buttonGroupList: [{
text: 'btn1',
icon: 'android',
onClick: function() {
alert('btn1')
}
}, {
text: 'btn2',
icon: 'apple',
isSelected: true,
onClick: function() {
alert('btn2')
}
}, {
text: 'btn3',
icon: 'android',
onClick: function() {
alert('btn3')
},
isDisabled: true
}]



属性

参数 说明 类型 可选值 默认值
data 用于渲染和操作的数据 Array - -
size 按钮组件的大小 String normal/large/small normal