index.ts 451 B

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