【前端】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>

 

posted @ 2021-03-09 23:07  淡怀  阅读(1442)  评论(0编辑  收藏  举报