login.vue 351 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onLoad() {
  12. uni.redirectTo({
  13. url: "/pages/home/home",
  14. });
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style>
  21. .content {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. </style>