mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 05:09:43 +08:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
import ElCheckbox from './src/checkbox';
|
|
|
|
/* istanbul ignore next */
|
|
ElCheckbox.install = function(Vue) {
|
|
Vue.component(ElCheckbox.name, ElCheckbox);
|
|
};
|
|
|
|
export default ElCheckbox;
|
|
|