wetrade-design
Version:
一款多语言支持Vue3的UI框架
11 lines • 374 B
JavaScript
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);
return app;
};
export var StatisticCountdown = Statistic.Countdown;
export default Statistic;