📕 Language/Vue

[vuejs] v-for의 index 차이

a n u e 2023. 2. 1. 09:48
<template v-for="index in 12" :key="index">
	<td> {{ index }} </td>
</template>

/** 결과
1
2
3
4
5
6
7
8
9
10
11
12
 */
<template v-for="(n, index in 12)" :key="index">
	<td> {{ index }} </td>
</template>

/** 결과
0
1
2
3
4
5
6
7
8
9
10
11
 */