mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
17 lines
444 B
TypeScript
17 lines
444 B
TypeScript
import { App, Plugin } from 'vue';
|
|
import Statistic from './Statistic';
|
|
import Countdown from './Countdown';
|
|
|
|
Statistic.Countdown = Countdown;
|
|
/* istanbul ignore next */
|
|
Statistic.install = function(app: App) {
|
|
app.component(Statistic.name, Statistic);
|
|
app.component(Statistic.Countdown.name, Statistic.Countdown);
|
|
return app;
|
|
};
|
|
|
|
export default Statistic as typeof Statistic &
|
|
Plugin & {
|
|
readonly Countdown: typeof Countdown;
|
|
};
|