🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
541 B

<docs>
---
order: 4
iframe: 360
title:
zh-CN: 含有气泡卡片的悬浮按钮
en-US: FloatButton with tooltip
---
## zh-CN
设置 tooltip 属性即可开启气泡卡片
## en-US
Setting `tooltip` prop to show FloatButton with tooltip.
</docs>
<template>
<a-float-button
tooltip="HELP INFO"
:style="{
right: '24px',
}"
></a-float-button>
<a-float-button
:style="{
right: '94px',
}"
>
<template #tooltip>
<div>Documents</div>
</template>
</a-float-button>
</template>