element/packages/switch/index.js

9 lines
155 B
JavaScript
Raw Normal View History

2016-07-27 06:15:02 +00:00
const ElSwitch = require('./src/component');
ElSwitch.install = function(Vue) {
2016-10-13 09:51:14 +00:00
Vue.component(ElSwitch.name, ElSwitch);
2016-07-27 06:15:02 +00:00
};
module.exports = ElSwitch;