1
0
mirror of synced 2025-12-27 17:08:00 +08:00
Files
vxe-table/packages/form-gather/index.ts
2022-02-17 21:44:25 +08:00

14 lines
398 B
TypeScript

import { App } from 'vue'
import VxeFormGatherComponent from '../form/src/form-gather'
import { dynamicApp } from '../dynamics'
export const FormGather = Object.assign(VxeFormGatherComponent, {
install (app: App) {
app.component(VxeFormGatherComponent.name, VxeFormGatherComponent)
}
})
dynamicApp.component(VxeFormGatherComponent.name, VxeFormGatherComponent)
export default FormGather