7 lines
134 B
Vue
7 lines
134 B
Vue
<template>
|
|
<div>
|
|
<template v-for="count in 5"
|
|
><span :key="count">{{ count }}</span></template
|
|
>
|
|
</div>
|
|
</template>
|