mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(dropdown-item): add root-portal prop support (#5256)
Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
This commit is contained in:
parent
17b9eadcb0
commit
3a4baaff41
@ -34,6 +34,10 @@ VantComponent({
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
rootPortal: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
},
|
||||
|
||||
data: {
|
||||
|
@ -13,6 +13,7 @@
|
||||
position="{{ direction === 'down' ? 'top' : 'bottom' }}"
|
||||
duration="{{ transition ? duration : 0 }}"
|
||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||
rootPortal="{{ rootPortal }}"
|
||||
bind:enter="onOpen"
|
||||
bind:leave="onClose"
|
||||
bind:close="toggle"
|
||||
|
@ -196,6 +196,7 @@ Page({
|
||||
| title-class | 标题额外类名,建议使用自定义样式 item-title-class 代替 | _string_ | - |
|
||||
| popup-style | 自定义弹出层样式 | _string_ | - |
|
||||
| use-before-toggle `v1.10.12` | 是否开启下拉菜单打开或者关闭前校验 | _boolean_ | `false` |
|
||||
| root-portal `v1.10.14` | 是否从页面子树中脱离出来,用于解决各种 fixed 失效问题,微信基础库 >= `2.25.2 ` | _boolean_ | `false` |
|
||||
|
||||
### DropdownItem Events
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user