u-tooltip
v1.0.3
Published
tooltip 组件
Readme
ToolTip 提示组件
Usage
import ToolTip from 'u-tooltip';参数说明
参数 | 说明 -- | -- placement | 对齐方式 overlay | 展示内容 children | 子元素
placement : [ 'left', 'right', 'top', 'bottom', 'topLeft', 'leftTop', 'topRight', 'rightTop', 'bottomRight', 'rightBottom', 'bottomLeft', 'leftBottom', ]
使用示例
<ToolTip
placement="bottomLeft"
overlay={() => (
<div>
<p>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</p>
</div>
)}
>
<Icon />
</ToolTip>
