ant-design-vue/components/statistic/index.js

13 lines
323 B
JavaScript
Raw Normal View History

2019-05-25 09:18:04 +00:00
import Statistic from './Statistic';
import Countdown from './Countdown';
Statistic.Countdown = Countdown;
/* istanbul ignore next */
Statistic.install = function(app) {
app.component(Statistic.name, Statistic);
app.component(Statistic.Countdown.name, Statistic.Countdown);
2020-10-13 11:14:56 +00:00
return app;
2019-05-25 09:18:04 +00:00
};
export default Statistic;