vxe-pc-ui
Version:
A vue based PC component library
19 lines (18 loc) • 715 B
JavaScript
;
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(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const VxeOption = exports.VxeOption = Object.assign(_option.default, {
install: function (app) {
app.component(_option.default.name, _option.default);
}
});
_dynamics.dynamicApp.use(VxeOption);
_core.VxeUI.component(_option.default);
const Option = exports.Option = VxeOption;
var _default = exports.default = VxeOption;