在 v-for 里使用值范围

v-for 也可以接受整数。在这种情况下,它会把模板重复对应次数。

  1. <div>
  2. <span v-for="n in 10">{{ n }} </span>
  3. </div>

结果:

在 v-for 里使用值范围 - 图1