mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 11:17:38 +08:00
0bf50bfc2e
* Add button style to checkbox * Implement min/max for checkbox button group * Fixing a display bug when chekbox is ':checked' * Update docs to integrate example button+min/max option * Register correctly checkbox-button Last fixes after cherry pick and bad rebase...
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
import ElCheckboxButton from '../checkbox/src/checkbox-button.vue';
|
|
|
|
/* istanbul ignore next */
|
|
ElCheckboxButton.install = function(Vue) {
|
|
Vue.component(ElCheckboxButton.name, ElCheckboxButton);
|
|
};
|
|
|
|
export default ElCheckboxButton;
|