2019-05-25 09:18:04 +00:00
|
|
|
import Statistic from './Statistic';
|
|
|
|
import Countdown from './Countdown';
|
|
|
|
|
|
|
|
Statistic.Countdown = Countdown;
|
|
|
|
/* istanbul ignore next */
|
2020-06-22 09:50:38 +00:00
|
|
|
Statistic.install = function(app) {
|
|
|
|
app.component(Statistic.name, Statistic);
|
|
|
|
app.component(Statistic.Countdown.name, Statistic.Countdown);
|
2019-05-25 09:18:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Statistic;
|