template
<ul> <li v-for="(relation,index) in relations" v-bind:id="relation.id" v-bind:id="relation.id" v-bind:class="{checked:index==nowIndex}" v-on:click="relationClick(index)"> <i> </ul>
data
nowIndex:0
methods
changeValue(index){
this.isActive=index;
}`
style
.checked{
background: #eff4f7;
}