在Vue3项目中,给表格某个字段下的全部单元格添加超链接功能,点击对应的单元格可以进入对应的页面
<template>
<el-table :data="dataAll">
<!-- 要实现超链接的字段 -->
<el-table-column prop="name" label="选项1">
<template #default="scope">
<a :href="scope.row.courseUrl" target="_blank" style="text-decoration: none">
{{ scope.row.name }}
</a>
</template>
</el-table-column>
<!-- 其他列 -->
<el-table-column prop="key2" label="字段2" />
<el-table-column prop="key3" label="字段3" />
<el-table-column prop="key4" label="字段4" />
<el-table-column prop="key5" label="字段5" />
</el-table>
</template>
<template #default="scope">
<a :href="scope.row.courseUrl" target="_blank" style="text-decoration: none">
该部分代码可以当作模板直接套用,根据实际情况改动下图对应位置即可:
如果把超链接的下划线去掉了,可以增加触发提示功能,让用户知道点击单元格可以进入对应的网址,提高交互性
在前面代码的基础上,使用el-tooltip组件来实现触发功能
根据实际情况改动相应的位置即可:
当鼠标悬浮在对应的单元格时,都会有提示词提醒用户可以点击单元格实现页面的跳转,完整代码如下:
<el-table-column prop="name" label="项目名称" width="330">
<template #default="scope">
<el-tooltip
content="点击进入新页面"
placement="top-start"
effect="light"
>
<!-- <template #default="scope"> -->
<a
:href="scope.row.courseUrl"
style="text-decoration: none; color: white"
>
{{ scope.row.name }}
</a>
<!-- </template> -->
</el-tooltip>
</template>
</el-table-column>