以下代码是一个组件中对表格最后一列是否为button的判断,通过linkItem对象是否存在来决定是否显示button。
<el-table-column
v-if="JSON.stringify(this.linkItem) != '{}'"
:prop="this.linkItem.prop"
:label="this.linkItem.label"
:width="this.linkItem.width"
:align="this.linkItem.align"
>
<template slot-scope="scope">
<el-button
size="small"
@click="handlerDialogOpen(scope.row.projectName)"
>
{{this.linkItem.label}}
</el-button>
</template>
</el-table-column>
正常使用没有问题,但是当我想要获取某一行的数据,增加了slot-scope="scope"来获取行内的信息时就出现了以下的错误
以下是linkItem赋值
data () {
return {
linkItem: {}
}
},
created () {
if (this.tableList[this.tableList.length - 1].prop === 'operation') {
this.linkItem = this.tableList.pop()
}
}
tableList是父组件通过prop传过来的
template
中不加this
。你linkItem
里面是什么?这个报错信息很明白,和
slot
并没有关系。