django-vue3-admin-web/node_modules/vxe-pc-ui/lib/form-gather/index.js
2025-10-20 21:21:14 +08:00

30 lines
994 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.VxeFormGather = exports.FormGather = void 0;
var _core = require("@vxe-ui/core");
var _formGroup = _interopRequireDefault(require("../form/src/form-group"));
var _dynamics = require("../dynamics");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const VxeFormGatherComponent = Object.assign({}, _formGroup.default, {
name: 'VxeFormGather'
});
/**
* 已废弃,被 VxeFormGather 替换
* @deprecated
*/
const VxeFormGather = exports.VxeFormGather = Object.assign(VxeFormGatherComponent, {
install(app) {
app.component(VxeFormGatherComponent.name, VxeFormGatherComponent);
}
});
_dynamics.dynamicApp.use(VxeFormGather);
_core.VxeUI.component(VxeFormGatherComponent);
/**
* 已废弃,被 FormGroup 替换
* @deprecated
*/
const FormGather = exports.FormGather = VxeFormGather;
var _default = exports.default = VxeFormGather;