loading.vue 510 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="page">
  3. 正在加载
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. onShow() {
  13. // this.$u.route({
  14. // url: '/pages/signs/home/home',
  15. // type: "switchTab",
  16. // params: {}
  17. // })
  18. },
  19. onLoad() {
  20. // this.$u.route({
  21. // url: '/pages/signs/home/home',
  22. // type: "switchTab",
  23. // params: {}
  24. // })
  25. }
  26. }
  27. </script>
  28. <style lang="scss" lang="scss">
  29. .page{
  30. height: 100vh;
  31. width: 100vw;
  32. color: #fff;
  33. }
  34. </style>