美文网首页
Vue2 element-ui2.12 table显示html标

Vue2 element-ui2.12 table显示html标

作者: IamaStupid | 来源:发表于2019-10-23 17:19 被阅读0次
  1. 有个table需要某列的内容换行,如图


    image.png

但是不希望把<br>标签当成文字展示。

解决方法,代码如下:

<el-table-column
        label="文案内容"
        align="left"
        min-width="180">
        <template slot-scope="scope">
            <p v-html='scope.row.address'></p>
        </template>
</el-table-column>

就是temple这段代码,另外table列不支持百分比,但是写上最小宽度可以达到一样的效果,实际会按照最小宽度的值的比例进行分配宽度。

相关文章

网友评论

      本文标题:Vue2 element-ui2.12 table显示html标

      本文链接:https://www.haomeiwen.com/subject/cdeiyctx.html