1
2
3
4
5
6
7
8
9
10
11
12
13
| <template>
| <frame-view>
| <count-up :end-val="100" :decimal-places="2">
| <template #suffix>
| <span>万</span>
| </template>
| </count-up>
| </frame-view>
| </template>
| <script lang="ts" setup>
| import CountUp from "vue-countup-v3";
| </script>
| <style lang="scss" scoped></style>
|
|