mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
18 lines
537 B
Plaintext
18 lines
537 B
Plaintext
<demo-block title="基础用法" padding>
|
|
<van-button type="primary" bind:click="onClickShow">
|
|
显示遮罩层
|
|
</van-button>
|
|
<van-overlay show="{{ show }}" bind:click="onClickHide" />
|
|
</demo-block>
|
|
|
|
<demo-block title="嵌入内容" padding>
|
|
<van-button type="primary" bind:click="onClickShowEmbedded">
|
|
嵌入内容
|
|
</van-button>
|
|
<van-overlay show="{{ showEmbedded }}" bind:click="onClickHideEmbedded">
|
|
<view class="wrapper">
|
|
<div class="block" catch:tap="noop" />
|
|
</view>
|
|
</van-overlay>
|
|
</demo-block>
|