vxe-pc-ui
Version:
A vue based PC component library
19 lines (18 loc) • 751 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.VxeFormView = exports.FormView = void 0;
var _core = require("@vxe-ui/core");
var _formView = _interopRequireDefault(require("../form-design/src/form-view"));
var _dynamics = require("../dynamics");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const VxeFormView = exports.VxeFormView = Object.assign(_formView.default, {
install: function (app) {
app.component(_formView.default.name, _formView.default);
}
});
_dynamics.dynamicApp.use(VxeFormView);
_core.VxeUI.component(_formView.default);
const FormView = exports.FormView = VxeFormView;
var _default = exports.default = VxeFormView;