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.
19 lines
708 B
19 lines
708 B
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.VxeOption = exports.Option = void 0;
|
|
var _core = require("@vxe-ui/core");
|
|
var _option = _interopRequireDefault(require("../select/src/option"));
|
|
var _dynamics = require("../dynamics");
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
var VxeOption = exports.VxeOption = Object.assign(_option.default, {
|
|
install: function install(app) {
|
|
app.component(_option.default.name, _option.default);
|
|
}
|
|
});
|
|
_dynamics.dynamicApp.use(VxeOption);
|
|
_core.VxeUI.component(_option.default);
|
|
var Option = exports.Option = VxeOption;
|
|
var _default = exports.default = VxeOption;
|