index.wxml 294 B

12345678
  1. <van-dialog use-slot title="{{dialog.title}}" show="{{ dialog.show }}" showConfirmButton="{{false}}">
  2. <view class="info">
  3. <slot name="info"></slot>
  4. </view>
  5. <view class="btn">
  6. <button type="warn" size="mini" bindtap="toClose">关闭</button>
  7. </view>
  8. </van-dialog>