vue 中 v-for 和 :key 配套使用

<ul class="title">
      <li v-for="(item,index) in tabTile ":key='1'  @click="cur=index" :class="{active:cur==index}"> {{item}}</li>
    </ul>
原文地址:https://www.cnblogs.com/wangshishuai/p/11346371.html