先说方法:v-html = "你的字符串"

<el-table-column type="expand" label="详情" header-align="center">
  <template slot-scope="scope">
    <div v-html="scope.row.steps"></div>
  </template>
</el-table-column>

[格式化前]

vue.js中,如何把text按html格式化显示-LMLPHP

[格式化后]

vue.js中,如何把text按html格式化显示-LMLPHP

05-27 23:27