index.js 419 B

123456789101112
  1. import { VxeUI } from '@vxe-ui/core';
  2. import VxeSelectComponent from './src/select';
  3. import { dynamicApp } from '../dynamics';
  4. export const VxeSelect = Object.assign(VxeSelectComponent, {
  5. install: function (app) {
  6. app.component(VxeSelectComponent.name, VxeSelectComponent);
  7. }
  8. });
  9. dynamicApp.use(VxeSelect);
  10. VxeUI.component(VxeSelectComponent);
  11. export const Select = VxeSelect;
  12. export default VxeSelect;