【vue+element-ui】获取el-table-column中一条记录的值

使用插槽:

<el-table-column label="状态">
	<!-- 作用域插槽 -->
    <template v-slot:="scope">{
     {
     scope}}</template>
</el-table-column>

你可能感兴趣的:(vue)