Looping over a range in Vue
You can make the cycle repeat a specified number of times. This is done as follows:
<template>
<p v-for="num in 10">
{{ num }}
</p>
</template>
Make 30 paragraphs filled with whole numbers in order.
You can make the cycle repeat a specified number of times. This is done as follows:
<template>
<p v-for="num in 10">
{{ num }}
</p>
</template>
Make 30 paragraphs filled with whole numbers in order.