index.js 165 B

123456789
  1. import Switch from './src/component';
  2. /* istanbul ignore next */
  3. Switch.install = function(Vue) {
  4. Vue.component(Switch.name, Switch);
  5. };
  6. export default Switch;