實(shí)現(xiàn)點(diǎn)擊表頭改變背景顏色,active值改變反饋不到class屬性上?怎么修改?<div class="tableList"> <table border="" cellspacing="" cellpadding=""> <tr><th v-for="head in tableHeads" @click="orderBy(head)" :class="{active: head.active}">{{head.label}}</th></tr> <tr v-for="item in tableData"> <td v-for="head in tableHeads">{{ item[head.key] }}</td> </tr> </table> </div> methods :{ orderBy(headItem){ this.tableHeads.map((item) =>{ item.active = false return item }) headItem.active = true; } }, .tableList th.active{ background: #35495e; }
vue 表格中點(diǎn)擊表頭改變顏色,事件中改變的屬性,不能更新到樣式上
繁花不似錦
2018-12-11 13:19:57