el-table将null转为空值
时间: 2023-02-21 19:37:53 浏览: 157
json转lua-table工具
5星 · 资源好评率100%
在使用 element-ui 的 el-table 组件时,如果要将 null 转换为空值,可以在模板中使用 v-if 和 v-else 语句。具体实现方法如下:
```
<el-table-column label="列名">
<template slot-scope="scope">
<template v-if="scope.row.字段名 !== null">
{{ scope.row.字段名 }}
</template>
<template v-else>
{{ '' }}
</template>
</template>
</el-table-column>
```
其中,字段名需要替换为实际的字段名称。
阅读全文