index.js 502 B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = exports.Switch = void 0;
  6. var _switch = _interopRequireDefault(require("./src/switch"));
  7. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  8. _switch.default.install = function (Vue) {
  9. Vue.component(_switch.default.name, _switch.default);
  10. };
  11. var Switch = _switch.default;
  12. exports.Switch = Switch;
  13. var _default = _switch.default;
  14. exports.default = _default;