19 lines
502 B
JavaScript
19 lines
502 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.Switch = void 0;
|
|
|
|
var _switch = _interopRequireDefault(require("./src/switch"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
_switch.default.install = function (Vue) {
|
|
Vue.component(_switch.default.name, _switch.default);
|
|
};
|
|
|
|
var Switch = _switch.default;
|
|
exports.Switch = Switch;
|
|
var _default = _switch.default;
|
|
exports.default = _default; |