| 12345678910111213141516171819 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = exports.VxeSwitch = exports.Switch = void 0;
- var _core = require("@vxe-ui/core");
- var _dynamics = require("../dynamics");
- var _switch = _interopRequireDefault(require("./src/switch"));
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
- var VxeSwitch = exports.VxeSwitch = Object.assign(_switch.default, {
- install: function install(app) {
- app.component(_switch.default.name, _switch.default);
- }
- });
- _dynamics.dynamicApp.use(VxeSwitch);
- _core.VxeUI.component(_switch.default);
- var Switch = exports.Switch = VxeSwitch;
- var _default = exports.default = VxeSwitch;
|