mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
673 B
Plaintext
25 lines
673 B
Plaintext
<import src="/dist/dialog/index.wxml" />
|
|
|
|
<view class="container">
|
|
|
|
<view class="doc-title zan-hairline--bottom">DIALOG</view>
|
|
|
|
<view class="zan-btns" style="margin-top: 30vh;">
|
|
<button class="zan-btn" bindtap="toggleBaseDialog">
|
|
基础 Dialog
|
|
</button>
|
|
<button class="zan-btn" bindtap="toggleWithoutTitleDialog">
|
|
Dialog - 无标题
|
|
</button>
|
|
<button class="zan-btn" bindtap="toggleButtonDialog">
|
|
Dialog - 自定义显示按钮
|
|
</button>
|
|
<button class="zan-btn" bindtap="toggleVerticalDialog">
|
|
Dialog - 按钮纵向排布
|
|
</button>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<template is="zan-dialog" data="{{ zanDialog }}"></template>
|