# Tooltip 文本提示
# 概述
文字提示气泡框,在鼠标悬停时显示,代替了系统的title提示。
# 代码示例
# API
# Props
| 属性 | 说明 | 类型 | 默认值 |
|---|---|---|---|
| text | 提示的内容 | String | null |
| html | 提示的内容,是html结构的字符串 | String | null |
| component | 提示的内容,是一个vue组件 | Object | 400 |
| direction | 提示的朝向,相对于dom来说,可选值有left、right、top、bottom | String | bottom |
| align | 提示内容相对于dom的位置,可选值有top、bottom、center、right、left | String | center |
| confirm | 是否是询问模式 | Boolean | false |
| onOk | 当询问模式时,点击确认按钮触发的函数 | Function | null |
| onCancel | 当询问模式时,点击取消按钮触发的函数 | Function | null |
← Modal 模态框 Loading 加载中 →