index.wxml 758 B

123456789101112131415
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">App</view>
  4. <view class="page__desc">包裹组件</view>
  5. </view>
  6. <view class="page__bd page__bd_spacing">
  7. <wux-app shadowRoot id="wux-app">
  8. <wux-button block type="light" bind:click="showDialog">Open dialog</wux-button>
  9. <wux-button block type="light" bind:click="showLoading">Open loading</wux-button>
  10. <wux-button block type="light" bind:click="showNotification">Open notification</wux-button>
  11. <wux-button block type="light" bind:click="showToast">Open toast</wux-button>
  12. <wux-button block type="light" bind:click="showToptips">Open toptips</wux-button>
  13. </wux-app>
  14. </view>
  15. </view>