有关ElementUI中slot-scope报错的问题

以下代码是一个组件中对表格最后一列是否为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"来获取行内的信息时就出现了以下的错误
1573201956(1).jpg

以下是linkItem赋值

data () {
    return {
      linkItem: {}
    }
},
created () {
    if (this.tableList[this.tableList.length - 1].prop === 'operation') {
      this.linkItem = this.tableList.pop()
    }
}

tableList是父组件通过prop传过来的

阅读 8k
2 个回答

template中不加this。你linkItem里面是什么?
这个报错信息很明白,和slot并没有关系。

参数传"$scope.row"而不是scope

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题