mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
10 lines
309 B
Plaintext
10 lines
309 B
Plaintext
<view
|
|
wx:if="{{ overlay }}"
|
|
class="overlay-class van-popup__overlay {{ show ? 'van-popup--show' : '' }}"
|
|
style="{{ overlayStyle }}"
|
|
bind:tap="onClickOverlay"
|
|
/>
|
|
<view class="custom-class van-popup {{ position ? 'van-popup--' + position : '' }} {{ show ? 'van-popup--show' : '' }}">
|
|
<slot />
|
|
</view>
|