Add button style to checkbox (#3697)

* 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...
This commit is contained in:
Mathieu DARTIGUES
2017-04-21 10:12:38 +02:00
committed by 杨奕
parent 8e1d8329aa
commit 0bf50bfc2e
10 changed files with 591 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
import ElCheckboxButton from '../checkbox/src/checkbox-button.vue';
/* istanbul ignore next */
ElCheckboxButton.install = function(Vue) {
Vue.component(ElCheckboxButton.name, ElCheckboxButton);
};
export default ElCheckboxButton;