mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
const ElSwitch = require('./src/component');
|
|
|
|
/* istanbul ignore next */
|
|
ElSwitch.install = function(Vue) {
|
|
Vue.component(ElSwitch.name, ElSwitch);
|
|
};
|
|
|
|
module.exports = ElSwitch;
|
|
|