欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

el-table 如何动态的修改某一单元格中字体颜色

程序员文章站 2022-07-13 15:37:24
...

关键代码

 <el-table-column header-align="center" align="center" v-for="item in notFixedData" :key="item.prop"
               v-if="item.isTrue" :prop="item.prop" :label="item.title" :min-width="item.width">
   <template slot-scope="scope">
       <span v-if="scope.row[item.prop] !== ''">{{scope.row[item.prop]}}</span>
       <span v-else style="color: red;">{{scope.row[item.prop]}}</span>
   </template>
</el-table-column>
相关标签: 功能 elementui