【前端】el-table、el-table-column在表格中插入超链接

https://blog.csdn.net/deniro_li/article/details/102531090/?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001.4242

未加超链接

<el-table-column prop="urlH5" label="H5"></el-table-column>

加了超链接

<el-table-column prop="urlH5" label="H5">
    <template slot-scope="scope">
        <a :href="scope.row.urlH5" target="_blank" class="buttonText">{{scope.row.urlH5}}</a>
    </template>
</el-table-column>

如果忍耐算是坚强 我选择抵抗 如果妥协算是努力 我选择争取
原文地址:https://www.cnblogs.com/danhuai/p/14508824.html