mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
514 B
514 B
order | title | debug | ||||
---|---|---|---|---|---|---|
100 |
|
true |
zh-CN
设置鼠标放在状态点上时显示的文字。
en-US
The badge will display title
when hovered over, instead of count
.
import { Badge, Avatar } from 'antd';
export default () => (
<>
<Badge count={5} title="Custom hover text">
<Avatar shape="square" size="large" />
</Badge>
<Badge count={-5} title="Negative">
<Avatar shape="square" size="large" />
</Badge>
</>
);