第一种

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

第二种是这种样式
在这里插入图片描述

Logo

前往低代码交流专区

更多推荐