<template>
<TsNumberGrow :start="100" :value="0" :playOnce="false" :play="reversalPlay" @end="reversalPlay = false" />
<TsButton @click="reversalPlay = true" style="margin-left: 50px">播放</TsButton>
</template>
<script setup lang="ts">
const play = ref(false);
const handleEnd = ()=>{
console.log("结束")
}
</script>