index.js 700 B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = exports.VxeSwitch = exports.Switch = void 0;
  6. var _core = require("@vxe-ui/core");
  7. var _dynamics = require("../dynamics");
  8. var _switch = _interopRequireDefault(require("./src/switch"));
  9. function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
  10. var VxeSwitch = exports.VxeSwitch = Object.assign(_switch.default, {
  11. install: function install(app) {
  12. app.component(_switch.default.name, _switch.default);
  13. }
  14. });
  15. _dynamics.dynamicApp.use(VxeSwitch);
  16. _core.VxeUI.component(_switch.default);
  17. var Switch = exports.Switch = VxeSwitch;
  18. var _default = exports.default = VxeSwitch;