mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
19 lines
497 B
Plaintext
19 lines
497 B
Plaintext
<view class="container">
|
|
|
|
<view class="doc-title">DIALOG</view>
|
|
|
|
<view class="zan-btns" style="margin-top: 30vh;">
|
|
<button class="zan-btn" bindtap="toggleDialog">
|
|
显示Dialog
|
|
</button>
|
|
</view>
|
|
|
|
<view class="zan-dialog {{ showDialog ? 'zan-dialog--show' : '' }}">
|
|
<view class="zan-dialog__mask" bindtap="toggleDialog" />
|
|
<view class="zan-dialog__container">
|
|
<view style="padding: 100px 0; text-align: center;">Dialog内容</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|