<div v-for="(value,index) of playlists" :key="value.id" @click="handle(index)" > // 自定义index 点击时拿取index methods:{ handle(index){ this.playlists.splice(index,1); } }