as shown in the picture: I want to hide the first two delete buttons, but the last one is not hidden. How to write the page structure as follows?
      <el-table-column label="" width="200%">
        <template scope="scope">
          <el-button size="small" @click="handleEdit(scope.$index, scope.row)"></el-button>
          <el-button size="small" type="danger" @click="handleDelete(scope.$index, scope.row)"></el-button>
        </template>
      </el-table-column>
 
 
