vuejs

Loop n times vuejs

<ul>
  <li v-for="(n, index) in 10">{{ n }}</li>
</ul>

You can easily loop n times in Vue by just passing n value to it. As in the code snippet, the loop will iterate 10 times as we have passed a value 10 to it.

Was this helpful?