vxe-design
Version:
A PC-based visual designer based on Vxe UI, used for building zero-code and low-code platforms
14 lines (13 loc) • 449 B
JavaScript
import { VxeUI } from '@vxe-ui/core';
import VxeFormViewComponent from '../form-design/src/form-view';
export const VxeFormView = Object.assign(VxeFormViewComponent, {
install: function (app) {
app.component(VxeFormViewComponent.name, VxeFormViewComponent);
}
});
if (VxeUI.dynamicApp) {
VxeUI.dynamicApp.use(VxeFormView);
}
VxeUI.component(VxeFormViewComponent);
export const FormView = VxeFormView;
export default VxeFormView;