diff --git a/src/datetime-picker/test/datetime-picker.legacy.js b/src/datetime-picker/test/datetime-picker.legacy.js
index 82f1ddfbc..02b89b326 100644
--- a/src/datetime-picker/test/datetime-picker.legacy.js
+++ b/src/datetime-picker/test/datetime-picker.legacy.js
@@ -35,3 +35,16 @@ test('getPicker method', () => {
const wrapper = mount(DatetimePicker);
expect(wrapper.vm.getPicker()).toBeTruthy();
});
+
+test('should render title slot correctly', () => {
+ const wrapper = mount(DatetimePicker, {
+ propsData: {
+ showToolbar: true,
+ },
+ scopedSlots: {
+ title: () => 'Custom title',
+ },
+ });
+
+ expect(wrapper.find('.van-picker__toolbar')).toMatchSnapshot();
+});
diff --git a/src/popover/README.md b/src/popover/README.md
index 059a3aae3..6d4a51f49 100644
--- a/src/popover/README.md
+++ b/src/popover/README.md
@@ -17,9 +17,7 @@ app.use(Popover);
```html
-
- Light Theme
-
+ Light Theme
```
@@ -53,9 +51,7 @@ Using the `theme` prop to change the style of Popover.
```html
-
- Dark Theme
-
+ Dark Theme
```
@@ -103,9 +99,7 @@ bottom-end # Bottom right
```html
-
- Show Icon
-
+ Show Icon
```
@@ -132,9 +126,7 @@ Using the `disabled` option to disable an action.
```html
-
- Disable Action
-
+ Disable Action
```
@@ -164,6 +156,7 @@ export default {
| actions | Actions | _Action[]_ | `[]` |
| placement | Placement | _string_ | `bottom` |
| theme | Theme,can be set to `dark` | _string_ | `light` |
+| trigger `v2.11.1` | Trigger mode,can be set to `click` | - |
| offset | Distance to reference | _[number, number]_ | `[0, 8]` |
| overlay | Whether to show overlay | _boolean_ | `false` |
| close-on-click-action | Whether to close when clicking action | _boolean_ | `true` |
diff --git a/src/popover/README.zh-CN.md b/src/popover/README.zh-CN.md
index 31b4d1775..4c5802dcd 100644
--- a/src/popover/README.zh-CN.md
+++ b/src/popover/README.zh-CN.md
@@ -23,9 +23,7 @@ app.use(Popover);
```html
-
- 浅色风格
-
+ 浅色风格
```
@@ -56,9 +54,7 @@ Popover 支持浅色和深色两种风格,默认为浅色风格,将 `theme`
```html
-
- 深色风格
-
+ 深色风格
```
@@ -106,9 +102,7 @@ bottom-end # 底部右侧位置
```html
-
- 展示图标
-
+ 展示图标
```
@@ -135,9 +129,7 @@ export default {
```html
-
- 禁用选项
-
+ 禁用选项
```
@@ -179,9 +171,7 @@ export default {
/>
-
- 自定义内容
-
+ 自定义内容
```
@@ -206,6 +196,7 @@ export default {
| actions | 选项列表 | _Action[]_ | `[]` |
| placement | 弹出位置 | _string_ | `bottom` |
| theme | 主题风格,可选值为 `dark` | _string_ | `light` |
+| trigger `v2.11.1` | 触发方式,可选值为 `click` | - |
| offset | 出现位置的偏移量 | _[number, number]_ | `[0, 8]` |
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
diff --git a/src/popover/demo/index.vue b/src/popover/demo/index.vue
index 111e6f757..09f93c00b 100644
--- a/src/popover/demo/index.vue
+++ b/src/popover/demo/index.vue
@@ -100,7 +100,7 @@
clickable
:border="false"
column-num="3"
- style="width: 240px;"
+ style="width: 240px"
>
{
+ if (props.trigger === 'click') {
+ toggle(!props.show);
+ }
+ };
+
const onTouchstart = (event) => {
event.stopPropagation();
emit('touchstart', event);
@@ -142,7 +149,7 @@ export default createComponent({
useClickAway(wrapperRef, onClickAway, { eventName: 'touchstart' });
return () => (
-
+
-