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

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

 

上一篇:Linux之开机、重启和用户登录注销


下一篇:集合——HashTable