这是我的 vuetify 表。
- - - - -模板 - - - - - -
<v-data-table
:headers="headers"
:items="desserts"
:items-per-page="5"
class="elevation-1"
>
</v-data-table>
- - - 脚本 - - - - - - -
headers: [
{
text: 'Campaign Id',
align: 'start',
sortable: false,
value: 'id',
},
{ text: 'Created by', value: 'created' },
{ text: 'Controls', value: 'control' },
],
desserts: [
{
id: '1',
created:'ABBC',
control:''
},
{
id: '2',
created:'ABBC',
control: '',
},
]
我想逐行添加颜色到表格行。我该怎么做?