<div id="app"> <ul> <li v-for="(todo, index) in todos" v-on:click="addClass(index)" v-bind:class="{ blue:index==current}">{{ todo.text }}</li> </ul> </div> <script> new Vue({ el: \'#app\', data: { current:0, todos: [ { text: \'选项一\' }, { text: \'选项二\' }, { text: \'选项三\' } ] }, methods:{ addClass:function(index){ this.current=index; } } })
相关文章: