el-table-column prop使用三元运算符(动态展示数据)
Posted 老张在线敲代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了el-table-column prop使用三元运算符(动态展示数据)相关的知识,希望对你有一定的参考价值。
prop需要是一个变量,以中英文翻译为例,当中英文都是后端返回时,前端应如何处理?
下面字段name为后端返回的中文名称,key为英文名称。
<el-table-column label="名称">
<template slot-scope="scope">
<span v-if="language=='zh_CN'">scope.row.name</span>
<span v-else-if>scope.row.key</span>
<span v-else>scope.row.index</span>
</template>
</el-table-column>
以上是关于el-table-column prop使用三元运算符(动态展示数据)的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 React (JSX) 编写 else if 结构 - 三元的表达力不够