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

14 lines
355 B
TypeScript
Raw Normal View History

2019-05-25 09:18:04 +00:00
import Statistic from './Statistic';
import Countdown from './Countdown';
2020-10-17 03:51:17 +00:00
import { App } from 'vue';
2019-05-25 09:18:04 +00:00
Statistic.Countdown = Countdown;
/* istanbul ignore next */
Statistic.install = function(app: 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;