mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 20:58:09 +08:00
9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
const ElCheckbox = require('./src/checkbox');
|
|
|
|
ElCheckbox.install = function(Vue) {
|
|
Vue.component('el-checkbox', ElCheckbox);
|
|
};
|
|
|
|
module.exports = ElCheckbox;
|
|
|