You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
874 B
22 lines
874 B
"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(e) { return e && e.__esModule ? e : { default: e }; }
|
|
var VxeFormGatherComponent = Object.assign({}, _formGroup.default, {
|
|
name: 'VxeFormGather'
|
|
});
|
|
var VxeFormGather = exports.VxeFormGather = Object.assign(VxeFormGatherComponent, {
|
|
install: function install(app) {
|
|
app.component(VxeFormGatherComponent.name, VxeFormGatherComponent);
|
|
}
|
|
});
|
|
_dynamics.dynamicApp.use(VxeFormGather);
|
|
_core.VxeUI.component(VxeFormGatherComponent);
|
|
var FormGather = exports.FormGather = VxeFormGather;
|
|
var _default = exports.default = VxeFormGather;
|