index.js 802 B

1234567891011121314151617181920
  1. "use strict";
  2. var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
  3. Object.defineProperty(exports, "__esModule", {
  4. value: true
  5. });
  6. exports.default = exports.StatisticCountdown = void 0;
  7. var _Statistic = _interopRequireDefault(require("./Statistic"));
  8. var _Countdown = _interopRequireDefault(require("./Countdown"));
  9. _Statistic.default.Countdown = _Countdown.default;
  10. /* istanbul ignore next */
  11. _Statistic.default.install = function (app) {
  12. app.component(_Statistic.default.name, _Statistic.default);
  13. app.component(_Statistic.default.Countdown.name, _Statistic.default.Countdown);
  14. return app;
  15. };
  16. var StatisticCountdown = _Statistic.default.Countdown;
  17. exports.StatisticCountdown = StatisticCountdown;
  18. var _default = _Statistic.default;
  19. exports.default = _default;