vue2中如何使用Ant Design Vue 中的 Tooltip 文字提示
最终效果:

实现代码:
<template slot="welfareHeader">
<div>
<span>公益基金</span>
<a-tooltip placement="top">
<template slot="title">
<div style="max-width: 300px; line-height: 1">
<p>支付金额 * 公益基金的比例</p>
</div>
</template>
<a-icon type="question-circle" style="margin-left: 5px; color: red;" />
</a-tooltip>
</div>
</template>
columns: [
{
title: "订单号",
dataIndex: "order_no",
},
{
scopedSlots: { title: "welfareHeader" },
dataIndex: "welfare_money",
align: "center",
},
]
原文地址:https://blog.csdn.net/liyuxiaomeng/article/details/151118609
免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!
