How to add different styles to the data rendered with v-for in Vue?

for example:
< tr vmurfort = "item in Data" >

<td class="red">{{item.td}}</td>

< / tr >

Data = [td:12,td:14]
what if I want to add a separate red style for td > 13?

Mar.01,2021

<tr v-for="item in Data">
  <td :class="{ red: item.td>13 }">{{item.td}}</td>
</tr>

v-bind:class {'red':item.td > 13}

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b35348-40501.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b35348-40501.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?