element/packages/switch/index.js

10 lines
165 B
JavaScript
Raw Normal View History

import Switch from './src/component';
2016-07-27 06:15:02 +00:00
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
Switch.install = function(Vue) {
Vue.component(Switch.name, Switch);
2016-07-27 06:15:02 +00:00
};
export default Switch;
2016-07-27 06:15:02 +00:00