mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
19 lines
437 B
Plaintext
19 lines
437 B
Plaintext
|
|
<doc-page title="ACTIONSHEET">
|
|
<view class="van-btns" style="margin-top: 30vh;">
|
|
<van-button bind:btnclick="openActionsheet">
|
|
Actionsheet
|
|
</van-button>
|
|
</view>
|
|
|
|
<van-actionsheet
|
|
show="{{ show }}"
|
|
actions="{{ actions }}"
|
|
cancel-text="{{ cancelText }}"
|
|
cancel-with-mask="{{ cancelWithMask }}"
|
|
bind:cancel="closeActionSheet"
|
|
bind:actionclick="clickAction"
|
|
mask-class="tiny"
|
|
/>
|
|
</doc-page>
|