mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
import Statistic from './Statistic';
|
|
import Countdown from './Countdown';
|
|
|
|
Statistic.Countdown = Countdown;
|
|
/* istanbul ignore next */
|
|
Statistic.install = function(Vue) {
|
|
Vue.component(Statistic.name, Statistic);
|
|
Vue.component(Statistic.Countdown.name, Statistic.Countdown);
|
|
};
|
|
|
|
export default Statistic;
|