鍍金池/ 問答/HTML5  HTML/ elment-ui的輪播圖 能在外部到它的key值嗎 看播放到第幾張的

elment-ui的輪播圖 能在外部到它的key值嗎 看播放到第幾張的

<el-carousel trigger="click" height="750px" :interval="5000" arrow="always" >

  <el-carousel-item v-for="item in imgs" :key="item"  >
    <div><img :src="item" width="100%"></div>
  </el-carousel-item>
</el-carousel>
<div><img :src="img2" ></div>
回答
編輯回答
眼雜

可以監(jiān)聽el-carousel的change事件,示例如下:

<el-carousel height="320px" @change="onChange">
    ...
</el-carousel>
...
methods: {
    onChange(currentIndex, oldIndex) {
        console.log(`當前索引:${currentIndex},原索引:${oldIndex}`);
    }
}
2018年8月8日 21:21