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.
20 lines
812 B
20 lines
812 B
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.VxeSplitPane = exports.SplitPane = void 0;
|
|
var _core = require("@vxe-ui/core");
|
|
var _splitPane = _interopRequireDefault(require("../split/src/split-pane"));
|
|
var _dynamics = require("../dynamics");
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
var VxeSplitPane = exports.VxeSplitPane = Object.assign({}, _splitPane.default, {
|
|
install: function install(app) {
|
|
app.component(_splitPane.default.name, _splitPane.default);
|
|
app.component('VxeSplitItem', _splitPane.default);
|
|
}
|
|
});
|
|
_dynamics.dynamicApp.use(VxeSplitPane);
|
|
_core.VxeUI.component(_splitPane.default);
|
|
var SplitPane = exports.SplitPane = VxeSplitPane;
|
|
var _default = exports.default = VxeSplitPane;
|