Vue动态class

 1 .......
 2 <div class="div_F" v-for="(item,index) in arr_xxx" :key="index">
 3     <div :class="{'text_color' : Number(item.deposit_num) < 0}">
 4         {{item.deposit_num}}
 5     </div>
 6 </div>
 7 .......
 8 <style>
 9     ......
10     .text_color {
11         color: #f00 !important;
12     }
13     ......
14 </style>

 

posted @ 2020-09-11 10:56  资壁史卧边羌  阅读(121)  评论(0编辑  收藏  举报