一、业务场景:
最近在做Vue相关的项目,接到一个新需求,当鼠标划入表格内容时,显示出内容相关的提示信息。
二、解决方案:
刚开始用的mouseenter事件,整复杂了。把表格内容用插槽提取出来,把气泡框套上就好了
三、具体实现步骤
(1)渲染表格内容时使用插槽
{
title: '标签',
key: 'lastLabel',
scopedSlots: { customRender: 'lastLabel' }
},
(2)把气泡框标签套上去
<span slot="lastLabel" slot-scope="text, record">
<a-tooltip :title="record.sfxt=='0'?'系统标签':'个人标签'" placement="bottomLeft">
{{record.mc}}
</a-tooltip>
</span>
四、效果展示
今天的分享到此结束,欢迎小伙伴们一起交流