1234567891011121314151617181920 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = exports.StatisticCountdown = void 0;
- var _Statistic = _interopRequireDefault(require("./Statistic"));
- var _Countdown = _interopRequireDefault(require("./Countdown"));
- _Statistic.default.Countdown = _Countdown.default;
- /* istanbul ignore next */
- _Statistic.default.install = function (app) {
- app.component(_Statistic.default.name, _Statistic.default);
- app.component(_Statistic.default.Countdown.name, _Statistic.default.Countdown);
- return app;
- };
- var StatisticCountdown = _Statistic.default.Countdown;
- exports.StatisticCountdown = StatisticCountdown;
- var _default = _Statistic.default;
- exports.default = _default;
|