遇见问题
Vue Element table使用时,某列未刷新。
<el-table-column prop="statusDesc" min-width="140" label="申请进度" align="center">
<template slot-scope="scope"></template>
</el-table-column>

如何解决
只需要加 ( key="列props值" )

<el-table-column prop="statusDesc" min-width="140" label="申请进度" key="statusDesc" align="center">
<template slot-scope="scope"></template>
</el-table-column>
浙公网安备 33010602011771号