JavaScript上的多个变量

时间:2018-07-09 07:17:51

标签: javascript vue.js

我有这个脚本:

 <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>

此脚本的结果显示所有项目的状态为 DEACTIVE 。 我要添加条件已断开连接。我该怎么办?

2 个答案:

答案 0 :(得分:0)

大家好,我找到了答案

db.customers.find( { "creditLimit": { $gt: { $avg: $creditLimit } } }, { "customerName": 1, "city": 1, "state": 1 } );

答案 1 :(得分:-1)

您是说这样吗?

<v-tab :title="siteObject.xip_infos[index].lineid" >
  <div class="description text-left" 
    :class="{ 'text-danger': item.status === 'DEACTIVE' || item.disconnected == true }">
     <small v-for="(field, key) in item" :key="key">
       <strong>{{ key }}</strong> {{ field }}<br>
     </small>
   </div>
</v-tab>