14 lines
398 B
TypeScript
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
|