el-table display picture error Cannot read properties of undefined (reading 'row')

show image code

      <el-table-column prop="goods_img"  label="Address">
        <template   slot-scope="scope">
          <img :src="scope.row.goods_img"  min-width="70" height="70" />
        </template>
      </el-table-column>

The error report is as follows:
insert image description here
Later, I checked the error report and found a solution under a blog written by a big guy! ! Try it and the picture will show up!
Solution:
change slot-scope toinsert image description here

insert image description here
v-slot!!
insert image description here

The picture is displayed! ! !
insert image description here

Guess you like

Origin blog.csdn.net/m0_46695182/article/details/127415347