index.js 401 B

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