mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(popup): add root-portal prop support * fix(popup): fix test case error --------- Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
22 lines
496 B
Plaintext
22 lines
496 B
Plaintext
<wxs src="../wxs/utils.wxs" module="utils" />
|
|
<wxs src="./index.wxs" module="computed" />
|
|
|
|
<import src="./popup.wxml" />
|
|
|
|
<van-overlay
|
|
wx:if="{{ overlay }}"
|
|
show="{{ show }}"
|
|
z-index="{{ zIndex }}"
|
|
custom-style="{{ overlayStyle }}"
|
|
duration="{{ duration }}"
|
|
bind:click="onClickOverlay"
|
|
lock-scroll="{{ lockScroll }}"
|
|
root-portal="{{ rootPortal }}"
|
|
/>
|
|
|
|
<root-portal wx:if="{{ rootPortal }}">
|
|
<include src="./popup.wxml" />
|
|
</root-portal>
|
|
|
|
<include wx:else src="./popup.wxml" />
|