Vue中 :style :class 三元使用及 “四元以上使用”
发布网友
发布时间:2023-03-30 22:10
我来回答
共1个回答
热心网友
时间:2023-05-17 17:27
<span v-bind:style="{'display':config.isHaveSearch ? 'block':'none'}" >搜索</span>
<div :style="{'opacity' : scope.row.status === '1' ? 1 : 0.5}">{{scope.row.status === "1" ? "启用中" : "未启用"}}</div>
<div :class="item.isSelect?'selsect':'' " @click="minddleSelect(index)">
<text class="{{ it.passed == 1 ? 'pass' : 'fail' }}">{{ it.score }}</text>
四元以上使用方法就是在三元内再做一次判断