問題如題,原來vue1.x可以如下書寫:<el-carousel-item v-for="(item, key, index) in picList" :key="index" > <el-button id="carouselBtn" type="text" v-on:click="openDownLoad($index)" > <img :src="item.img" :alt="item.altstring" class="img-responsive"> </el-button> </el-carousel-item>因為在vue2.x中$index被廢棄了,那如果使用vue2.x,我該如何獲得當(dāng)時的index?直接寫index 點擊后 為 undefined求解?
vuejs2.0 的v-for取消了$index,現(xiàn)在我該如何替換獲取索引額?
溫溫醬
2018-12-19 18:15:26