liuying
2024-12-01 6db85a1b10d891a3871775c2c555fd681cb7da34
1
2
3
4
5
6
7
import { CountUp } from "countup.js";
const demo = new CountUp("myTargetElement", 6884);
if (!demo.error) {
  demo.start();
} else {
  console.error(demo.error);
}