vue 内table插入超链接 a 标签用法
第一种<el-table-column label="链接" min-width="150px"><template slot-scope="{row}"><el-link :href="row.link" target="_blank" class="buttonText"type="primary" :underline="false">{{ row.lin
·
第一种
<el-table-column label="链接" min-width="150px">
<template slot-scope="{row}">
<el-link :href="row.link" target="_blank" class="buttonText" type="primary" :underline="false">{{ row.link }}</el-link>
</template>
</el-table-column>
写好之后是这种样式
第二种
<el-table-column label="链接" min-width="150px">
<template slot-scope="{row}">
<a :href="row.link" target="_blank">{{ row.link }}</a>
</template>
</el-table-column>
第二种是这种样式
更多推荐
已为社区贡献2条内容
所有评论(0)