VUE表格中显示微信头像失败

vue在表格中显示微信头像,总是无法显示

img


后端返回的数据如下

img


我写的失败的如下

<el-table
        ref="table"
        v-loading="loading"
        :data="tableData"
        size="medium"
        border
      >
        <el-table-column
          prop="wxUrl"
          label="微信头像"
          align="center"
        >
          <el-image
            style="width: 100px; height: 100px"
            :src="wxUrl"
            :fit="fill"
          />
        </el-table-column>
        <el-table-column
          prop="wxName"
          label="微信昵称"
          align="center"
        />
        <el-table-column
          prop="wxCode"
          label="微信号"
          align="center"
        />
</el-table>

为什么一直失败

该这样

img

  <el-table-column
          prop="wxUrl"
          label="微信头像"
          align="center"
        >
      <template slot-scope="scope">
          <el-image
            style="width: 100px; height: 100px"
            :src="scope.row.wxUrl"
            :fit="fill"
          />
      </template>

//需要使用插槽在vue2中下面格式就行
         <template slot-scope="scope">

        </template>
//vue3中
         <template v- slot="scope">

        </template>