mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
<demo-block title="提示弹窗" padding>
|
|
<van-button type="primary" class="demo-margin-right" bind:click="onClickAlert">
|
|
提示弹窗
|
|
</van-button>
|
|
<van-button type="primary" bind:click="onClickAlert2">
|
|
提示弹窗(无标题)
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block title="圆角样式" padding>
|
|
<van-button type="primary" class="demo-margin-right" bind:click="onClickThemeAlert">
|
|
提示弹窗
|
|
</van-button>
|
|
<van-button type="primary" bind:click="onClickThemeAlert2">
|
|
提示弹窗(无标题)
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block title="确认弹窗" padding>
|
|
<van-button type="primary" bind:click="onClickConfirm">
|
|
确认弹窗
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block title="异步关闭" padding>
|
|
<van-button type="primary" bind:click="onClickAsyncClose">
|
|
异步关闭
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block title="组件调用" padding>
|
|
<van-button type="primary" class="demo-margin-right" bind:click="showCustomDialog">
|
|
组件调用
|
|
</van-button>
|
|
<van-dialog
|
|
use-slot
|
|
title="标题"
|
|
show="{{ show }}"
|
|
show-cancel-button
|
|
bind:close="onClose"
|
|
confirm-button-open-type="getUserInfo"
|
|
bind:getuserinfo="getUserInfo"
|
|
>
|
|
<image
|
|
class="demo-image"
|
|
src="https://img.yzcdn.cn/public_files/2017/09/05/4e3ea0898b1c2c416eec8c11c5360833.jpg"
|
|
/>
|
|
</van-dialog>
|
|
</demo-block>
|
|
|
|
<van-dialog id="van-dialog" />
|