Skip to content

Commit

Permalink
docs: ✏️ 修正 Popover 组件文档中menuclick示例错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
xuqingkai committed Jan 29, 2024
1 parent 0a5d58b commit 9df96e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/component/drop-menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ function confirm() {

## DropdownItem Methods

通过 `this.selectComponent('#selector')` 可以获取到 DropdownItem 实例并调用实例方法
通过设置 `ref` 可以获取到 DropdownItem 实例并调用实例方法

| 方法名 | 说明 | 参数 | 返回值 | 最低版本 |
| ------ | -------- | ---- | ------ | -------- |
Expand Down
4 changes: 2 additions & 2 deletions docs/component/popover.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function handleChange1({ show }) {

- **menu**(列表模式):
- 文字提示框会展示成列表形式,此时 `content` 属性传入 `Array` 类型,数组内对象数据结构如下方列表所示。
- 绑定事件 `menu-click`,在选择结束后,执行操作,列表关闭。
- 绑定事件 `menuclick`,在选择结束后,执行操作,列表关闭。

列表模式下 `content` 数组内对象的数据结构:

Expand All @@ -54,7 +54,7 @@ function handleChange1({ show }) {
**注意:iconClass 属性值为组件库内部的 icon 图标名。**

```html
<wd-popover v-model="show" mode="menu" :content="menu" @menu-click="link" @change="handleChange">
<wd-popover v-model="show" mode="menu" :content="menu" @menuclick="link" @change="handleChange">
<wd-button>列表</wd-button>
</wd-popover>
```
Expand Down

0 comments on commit 9df96e7

Please sign in to comment.