index.js 180 B

123456789
  1. import VxeSwitch from './src/switch'
  2. export const Switch = Object.assign(VxeSwitch, {
  3. install (Vue) {
  4. Vue.component(VxeSwitch.name, VxeSwitch)
  5. }
  6. })
  7. export default Switch