//方案1:官网有提供empty-text 没用过你试试把 <el-table empty-text> <el-table-column label="选项/数值/单位"> <template slot="empty"> -- </template> </el-table-column> //方案2: <el-table-column label="选项/数值/单位"> <template slot-scope="scope"> <span v-if=" scope.row.value== '' ">--</span> <span v-else>元</span> </template> </el-table-column>
通用一点就注册1个全局过滤器。
Vue.filter('handleEmpty', function (value) { return value === '' ? '--' : value })
然后直接用就行了。
{{ msg | handleEmpty }}
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
通用一点就注册1个全局过滤器。
然后直接用就行了。