redirect.vue 236 B

123456789101112131415161718192021
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. onReady() {
  8. setTimeout(() => {
  9. uni.switchTab({
  10. url: '/pages/index/index'
  11. })
  12. }, 500)
  13. }
  14. }
  15. </script>
  16. <style>
  17. </style>