element/packages/checkbox/index.js

9 lines
183 B
JavaScript
Raw Normal View History

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