index.js 826 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _Statistic = require('./Statistic');
  6. var _Statistic2 = _interopRequireDefault(_Statistic);
  7. var _Countdown = require('./Countdown');
  8. var _Countdown2 = _interopRequireDefault(_Countdown);
  9. var _base = require('../base');
  10. var _base2 = _interopRequireDefault(_base);
  11. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
  12. _Statistic2['default'].Countdown = _Countdown2['default'];
  13. /* istanbul ignore next */
  14. _Statistic2['default'].install = function (Vue) {
  15. Vue.use(_base2['default']);
  16. Vue.component(_Statistic2['default'].name, _Statistic2['default']);
  17. Vue.component(_Statistic2['default'].Countdown.name, _Statistic2['default'].Countdown);
  18. };
  19. exports['default'] = _Statistic2['default'];