当在elementui中的table里想要渲染出html数据时
可以使用这种方式,里面嵌入个template
<el-table-column prop="conf_name" label="配置参数"> <template slot-scope="scope"> <div v-html="scope.row.conf_name"></div> </template> </el-table-column>
2023-10-14 20:52:58
当在elementui中的table里想要渲染出html数据时
可以使用这种方式,里面嵌入个template
<el-table-column prop="conf_name" label="配置参数"> <template slot-scope="scope"> <div v-html="scope.row.conf_name"></div> </template> </el-table-column>
下一篇:集合——HashTable