其他分享
首页 > 其他分享> > Vue杂记

Vue杂记

作者:互联网

Vue杂记

<el-table-column prop="status" label="状态">
        <template slot-scope="scope">
          <span :style="{color: scope.row.status === '正常' ? 'green' : 'red'}">{{ scope.row.status }}</span>
        </template>
</el-table-column>

标签:status,Vue,杂记,scope,data,row
来源: https://www.cnblogs.com/zhumenglong/p/16359457.html