naive-ui/demo/documentation/components/popover/zhCN/index.md

57 lines
2.2 KiB
Markdown
Raw Normal View History

2020-01-31 22:36:22 +08:00
# 弹出信息 Popover
2020-01-30 17:38:14 +08:00
Popover 在内容周围弹出一些隐藏的信息。Popover 里面没什么内置样式,在里面填什么主要靠你了。
如果你只想展示一些基本的文本内容,使用 [Tooltip](n-tooltip)。
2020-02-04 14:34:56 +08:00
## 演示
2020-01-30 17:38:14 +08:00
```demo
basic
trigger
controller
2020-01-30 17:38:14 +08:00
delay
no-arrow
event
placement
raw-content
width
manual-position
```
## Props
2020-02-07 23:40:07 +08:00
|名称|类型|默认值|说明|
2020-01-30 17:38:14 +08:00
|-|-|-|-|
|theme|`'light' \| 'dark'`|`null`||
2020-01-30 17:38:14 +08:00
|trigger|`'hover' \| 'trigger' \| 'manual'`|`'hover'`||
|show|`boolean`|`false`|在 `manual` 触发时控制弹出信息是否显示|
|delay|`number`|`0`|悬浮触发弹出信息的延迟|
|duration|`number`|`300`|悬浮关闭弹出信息的延迟|
2020-01-30 17:38:14 +08:00
|placement|`'top-start' \| 'top' \| 'top-end' \| 'right-start' \| 'right' \| 'right-end' \| 'bottom-start' \| 'bottom' \| 'bottom-end' \| 'left-start' \| 'left' \| 'left-end' \| `|`'bottom'`||
|show-arrow|`boolean`|`true`||
|raw|`boolean`|`false`|是否不添加默认样式|
|disabled|`boolean`|`false`|是否不能激活弹出信息|
|filp|`boolean`|`true`|是否在当前放置方式不能提供足够空间的时候调整弹出信息的位置|
|controller|`object`|`null`|`n-popover` 的控制器对象。如果对象被传入了,那么它会被添加 `show`(展示弹出内容) 和 `hide`(隐藏弹出内容) 方法。这两个方法可以在非 `manual` 控制的时候来控制弹出信息的显示状态|
2020-01-30 17:38:14 +08:00
|overlay-class|`string`|`null`||
|overlay-style|`object`|`null`||
|arrow-style|`object`|`null`||
|display-directive|`'if' \| 'show'`|`'if'`|条件渲染使用的指令,`if` 会让内容被使用 `v-if` 渲染,`show` 会让内容被使用 `v-show` 渲染|
|manually-positioned|`boolean`|`false`|是否要手动控制位置|
|x|`number`|`null`|手动控制位置时填出内容的 CSS `left` 的像素值|
|y|`number`|`null`|手动控制位置时填出内容的 CSS `top` 的像素值||
|width|`number \| string`|`null`||
|min-width|`number \| string`|`null`||
|max-width|`number \| string`|`null`||
## Slots
|名称|参数|说明|
|-|-|-|
|activator|`()`|触发弹出信息的组件或元素|
|default|`()`|弹出的内容|
2020-01-30 17:38:14 +08:00
## Events
|名称|参数|说明|
|-|-|-|
|show|`()`||
|hide|`()`||