index.vue 323 B

1234567891011121314
  1. <template>
  2. </template>
  3. <script setup>
  4. import { onMounted } from 'vue'
  5. onMounted(() => {
  6. const userAgent = navigator.userAgent.toLowerCase()
  7. const isMobile = /mobile|android|iphone|ipad|ipod/i.test(userAgent)
  8. if (isMobile) {
  9. window.location.href = '/h5'
  10. } else {
  11. window.location.href = '/pc'
  12. }
  13. })
  14. </script>