index.wxml 706 B

1234567891011121314
  1. <wux-notification id="wux-notification" />
  2. <view class="page">
  3. <view class="page__hd">
  4. <view class="page__title">Notification</view>
  5. <view class="page__desc">通知</view>
  6. </view>
  7. <view class="page__bd page__bd_spacing">
  8. <wux-button block type="light" bind:click="showNotification">Show Notification</wux-button>
  9. <wux-button block type="light" bind:click="closeNotification">Close Notification</wux-button>
  10. <wux-button block type="light" bind:click="showNotificationReturn">Use return value to close</wux-button>
  11. <wux-button block type="light" bind:click="showNotificationPromise">Use promise to know when closed</wux-button>
  12. </view>
  13. </view>