index.js 774 B

123456789101112131415161718
  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. const StatisticCountdown = exports.StatisticCountdown = _Statistic.default.Countdown;
  17. var _default = exports.default = _Statistic.default;