index.vue 293 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="container"></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {}
  8. },
  9. onLoad() {
  10. uni.switchTab({
  11. url: '/pages/home/home'
  12. })
  13. },
  14. methods: {}
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .container {
  19. height: 100vh;
  20. background-color: #fff;
  21. }
  22. </style>