mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 16:36:37 +08:00
12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
|
|
import reNormalCountTo from "./src/normal";
|
||
|
|
import reboundCountTo from "./src/rebound";
|
||
|
|
import { withInstall } from "@pureadmin/utils";
|
||
|
|
|
||
|
|
/** 普通数字动画组件 */
|
||
|
|
const ReNormalCountTo = withInstall(reNormalCountTo);
|
||
|
|
|
||
|
|
/** 回弹式数字动画组件 */
|
||
|
|
const ReboundCountTo = withInstall(reboundCountTo);
|
||
|
|
|
||
|
|
export { ReNormalCountTo, ReboundCountTo };
|