0
の$ indexを取得します。ここにはVueを含むテーブルがあります。Vueは、2つのレベルのv-で
<table>
<tr v-for="height in chartHeight" track-by="$index">
<td class="item" v-for="width in chartWidth" track-by="$index">
index of row and column here
</td>
</tr>
</table>
高さ$index
は幅の内側よりも優先されます。 $index
にはどうすればアクセスできますか?
chartHeightとchartWidthの例を表示できますか? –