nemo-shen 74e6db7ac4
feat(Overlay): add lock-scroll prop (#4383)
* build(workflows): add lint & build

* build(workflows): build:lib

* feat(Overlay): add lock-scroll prop

* style(Overlay): adjust order
2021-08-05 15:56:42 +08:00

22 lines
478 B
Plaintext

<van-transition
wx:if="{{ lockScroll }}"
show="{{ show }}"
custom-class="van-overlay"
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
duration="{{ duration }}"
bind:tap="onClick"
catch:touchmove="noop"
>
<slot></slot>
</van-transition>
<van-transition
wx:else
show="{{ show }}"
custom-class="van-overlay"
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
duration="{{ duration }}"
bind:tap="onClick"
>
<slot></slot>
</van-transition>