element/packages/checkbox/index.js

10 lines
184 B
JavaScript
Raw Normal View History

import ElCheckbox from './src/checkbox';
2016-07-27 14:15:02 +08:00
2016-10-19 22:48:35 +08:00
/* istanbul ignore next */
2016-07-27 14:15:02 +08:00
ElCheckbox.install = function(Vue) {
2016-10-13 17:51:14 +08:00
Vue.component(ElCheckbox.name, ElCheckbox);
2016-07-27 14:15:02 +08:00
};
export default ElCheckbox;
2016-07-27 14:15:02 +08:00