mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-03 13:44:47 +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 };
|