index.js 398 B

123456789101112131415
  1. import VxeSelect from './src/select'
  2. import VxeOption from './src/option'
  3. import VxeOptgroup from './src/optgroup'
  4. export const Select = Object.assign(VxeSelect, {
  5. Option: VxeOption,
  6. Optgroup: VxeOptgroup,
  7. install (Vue) {
  8. Vue.component(VxeSelect.name, VxeSelect)
  9. Vue.component(VxeOption.name, VxeOption)
  10. Vue.component(VxeOptgroup.name, VxeOptgroup)
  11. }
  12. })
  13. export default Select