美文网首页
vue循环数据最后一个不加/不加、

vue循环数据最后一个不加/不加、

作者: 流泪手心_521 | 来源:发表于2021-01-14 17:49 被阅读0次
<text v-for="(item, idx) in orderData.tags" :key="item.id">
    <text>{{item}}{{idx === orderData.tags.length-1 ? " ":" / "}}</text>
</text>

重点

idx === orderData.tags.length-1 ? " ":" / "

或者
<el-table-column prop="announceTargetAppList" label="关联应用">
          <template slot-scope="scope">
            {{scope.row.sectionColumnName.length-1 ? '' :  ',' }}
          </template>
</el-table-column>

相关文章

网友评论

      本文标题:vue循环数据最后一个不加/不加、

      本文链接:https://www.haomeiwen.com/subject/ddnvaktx.html