cheney.s

Results 3 comments of cheney.s

Me too, but height is appropriate on my mac ![Image](https://github.com/user-attachments/assets/ec04ce78-8a9d-42bc-8d09-c995aeac712c)

> 加个 `nextTick` 试试 已经试过了不行,先给 :to 赋值,然后 `setTimeout(() => { ...play() }, 500)`

简单看了下源码NumberAnimation.tsx,大概问题是在70行: ``` animating = true displayedValueRef.value = props.from if (from !== to) { tween(...) ``` 当 from 和 to 都是0,不会触发后面tween的调用,所以animating一直是true的状态,后续调用play的时候直接return了 ``` function play (): void { if (animating) return animate()...