mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-16 11:44:01 +08:00
9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
const ElCheckbox = require('./src/checkbox');
|
|
|
|
ElCheckbox.install = function(Vue) {
|
|
Vue.component(ElCheckbox.name, ElCheckbox);
|
|
};
|
|
|
|
module.exports = ElCheckbox;
|
|
|