NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/ant-design-vue/es/statistic/index.js
2023-09-14 14:47:11 +08:00

13 lines
354 B
JavaScript

import Statistic from './Statistic';
import Countdown from './Countdown';
import Base from '../base';
Statistic.Countdown = Countdown;
/* istanbul ignore next */
Statistic.install = function (Vue) {
Vue.use(Base);
Vue.component(Statistic.name, Statistic);
Vue.component(Statistic.Countdown.name, Statistic.Countdown);
};
export default Statistic;