如何在element中table的 v-for中 使用slot-scope?

时间:2024-07-17 07:07:23
<template>
  <el-table
    :data="Data"
    style="width: 100%"
    @cell-click="tableClick"
  >
    <el-table-column
      prop="address"
      label="序号"
      type="index"
    >
    </el-table-column>
    <el-table-column
      v-for="(info) in rightHeader"
      :key="info.key"
      :label="info.label"
      :prop="info.key"
      :show-overflow-tooltip="true"
      align="center"
    >
      <template slot-scope="scope">
        <span v-if="scope.