2019-05-25 09:18:04 +00:00
|
|
|
import Statistic from './Statistic';
|
|
|
|
import Countdown from './Countdown';
|
2019-09-18 12:03:13 +00:00
|
|
|
import Base from '../base';
|
2019-05-25 09:18:04 +00:00
|
|
|
|
|
|
|
Statistic.Countdown = Countdown;
|
|
|
|
/* istanbul ignore next */
|
|
|
|
Statistic.install = function(Vue) {
|
2019-09-18 12:03:13 +00:00
|
|
|
Vue.use(Base);
|
2019-05-25 09:18:04 +00:00
|
|
|
Vue.component(Statistic.name, Statistic);
|
|
|
|
Vue.component(Statistic.Countdown.name, Statistic.Countdown);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Statistic;
|