You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

loading.vue 751 B

4 years ago
1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <l-title>加载状态:</l-title>
  4. <view class="padding bg-white">
  5. <l-loading />
  6. <l-loading completed />
  7. <l-loading error />
  8. </view>
  9. <l-demo-description>
  10. 使用 l-loading 标签来放置加载状态组件;默认是加载中,添加 completed 属性则为完成,添加 error 属性则为失败
  11. </l-demo-description>
  12. <l-title>背景色:</l-title>
  13. <view class="padding bg-white">
  14. <l-loading color="blue" />
  15. <l-loading color="green" completed />
  16. <l-loading color="red" error />
  17. </view>
  18. <l-demo-description>
  19. 添加 color="*" 属性即可设置组件的背景色,把*替换成颜色的英文名
  20. </l-demo-description>
  21. </view>
  22. </template>