后端传的字段 enablementplan 里带有 html 标签,想在 vue 页面的 table 里看到 html 标签显示效果,比如颜色之类的
<el-table-column type="String" prop="enablementplan" label="EnablementPlan" sortable width="300"> | |
<template slot-scope="scope"> | |
<p v-html='scope.row.enablementplan'></p> | |
</template> | |
</el-table-column> |
转自:https://blog.csdn.net/weixin_30708329/article/details/101145081