hymn

忽有故人心头过,回首山河已是秋。

  menu
132 文章
0 浏览
5 当前访客
ღゝ◡╹)ノ❤️

vue + elementUI 中 el-table-column 的 json 数据转换

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>

标题:vue + elementUI 中 el-table-column 的 json 数据转换
作者:hymn
地址:https://dxyhymn.com/articles/2020/07/02/1593661674390.html