vue element表格怎么在secondPrice第二件价格为0时不显示,但是不等于0时就和sellingPrice价格一起显示呢?
<el-table-column>
<template slot-scope="scope">
<span v-if="scope.row.secondPrice!==0">
{{scope.row.secondPrice}},{{scope.row.sellingPrice}}
</span>
</template>
</el-table-column>