You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
507 B
17 lines
507 B
<wux-animation-group
|
|
wux-class="{{ classes.wrap }}"
|
|
in="{{ active }}"
|
|
classNames="{{ classNames }}"
|
|
wrapStyle="{{ { zIndex } }}"
|
|
mountOnEnter="{{ mountOnEnter }}"
|
|
unmountOnExit="{{ unmountOnExit }}"
|
|
disableScroll
|
|
bind:click="onClick"
|
|
bind:entered="onEntered"
|
|
bind:exited="onExited"
|
|
>
|
|
<view class="{{ classes.btn }}" aria-role="button" aria-label="backdrop" catchtap="onClick"></view>
|
|
<view class="{{ classes.bd }}" catchtap="noop">
|
|
<slot></slot>
|
|
</view>
|
|
</wux-animation-group>
|
|
|