Presently, I am working with the following script:
<v-tab :title="siteObject.xip_infos[index].lineid" >
<div class="description text-left" :class="{ 'text-danger': item.status === 'DEACTIVE' }">
<small v-for="(field, key) in item" :key="key">
<strong>{{ key }}</strong> {{ field }}<br>
</small>
</div>
</v-tab>
Currently, this script displays all items that have a status of DEACTIVE. I now need to incorporate the condition for disconnected. How can I achieve this?