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