JSON.parse(scope.row.json) 可以直接直接转换json字符串 <el-table-column align="center" label="填写内容"> <template slot-scope="scope"> <el-row v-for="json in JSON.parse(scope.row.json)" :key="json"> {{json}} </el-row> </template> </el-table-column>