Vue杂记
作者:互联网
Vue杂记
- 是否加样式或者类名(动态属性)、scope.row能拿到data数据
<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