zhangnuoyan
2024-08-25 efd620b121f27ba59a265402f2cec0ea0a5a1309
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>