zl程序教程

您现在的位置是:首页 >  .Net

当前栏目

[前端] ElementUI 中table表格数据解析渲染html格式

2023-02-18 15:36:49 时间

当在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>