index.js 158 B

12345678
  1. import Switch from './switch.vue';
  2. import './switch.scss';
  3. Switch.install = function(Vue) {
  4. Vue.component(Switch.name, Switch);
  5. };
  6. export default Switch;