index.ts 429 B

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