例如 v-for="(num in (9/4))" 就会报错。 需要借助 Math.ceil函式,例如 v-for="(num in Math.ceil(9/4))" 。 但在微信小程序可以用小数。 请问这个错误时属于bug吗?
0 个回复