mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 12:18:46 +08:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
const ElCheckbox = require('./src/checkbox');
|
|
|
|
/* istanbul ignore next */
|
|
ElCheckbox.install = function(Vue) {
|
|
Vue.component(ElCheckbox.name, ElCheckbox);
|
|
};
|
|
|
|
module.exports = ElCheckbox;
|
|
|