index.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view :class="'custom-class van-loading ' + (vertical ? 'van-loading--vertical' : '')">
  3. <view :class="'van-loading__spinner van-loading__spinner--' + type" :style="'color: ' + color + '; width: ' + utils.addUnit(size) + '; height: ' + utils.addUnit(size)">
  4. <view v-if="type === 'spinner'" class="van-loading__dot" v-for="(item, index) in array12" :key="index"></view>
  5. </view>
  6. <view class="van-loading__text" :style="'font-size: ' + utils.addUnit(textSize) + ';'">
  7. <slot />
  8. </view>
  9. </view>
  10. </template>
  11. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  12. <script>
  13. 'use strict';
  14. Object.defineProperty(exports, '__esModule', {
  15. value: true
  16. });
  17. var component_1 = require('../common/component');
  18. component_1.VantComponent({
  19. props: {
  20. color: String,
  21. vertical: Boolean,
  22. type: {
  23. type: String,
  24. value: 'circular'
  25. },
  26. size: String,
  27. textSize: String
  28. },
  29. data: {
  30. array12: Array.from({
  31. length: 12
  32. })
  33. }
  34. });
  35. </script>
  36. <style>
  37. @import './index.css';
  38. </style>