runinrain

博客园 首页 新随笔 联系 订阅 管理

遇见问题

Vue Element table使用时,某列未刷新。

 <el-table-column prop="statusDesc" min-width="140" label="申请进度" align="center">
          <template slot-scope="scope"></template>
 </el-table-column>![请添加图片描述](https://img-blog.csdnimg.cn/f8e312a59e1343bc95c18d5e69c751d5.png)

在这里插入图片描述

如何解决

只需要加 ( key="列props值" )
在这里插入图片描述

 <el-table-column prop="statusDesc" min-width="140" label="申请进度" key="statusDesc" align="center">
          <template slot-scope="scope"></template>
 </el-table-column>
posted on 2025-02-08 11:28  不确定因素  阅读(15)  评论(0)    收藏  举报