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