index.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  12. <script>
  13. import { VantComponent } from '../common/component';
  14. export default {
  15. data() {
  16. return {
  17. array12: Array.from({
  18. length: 12
  19. })
  20. };
  21. },
  22. props: {
  23. color: String,
  24. vertical: Boolean,
  25. type: {
  26. type: String,
  27. default: 'circular'
  28. },
  29. size: String,
  30. textSize: String
  31. }
  32. };
  33. </script>
  34. <style>
  35. @import './index.css';
  36. </style>