index.vue 390 B

12345678910111213
  1. <template>
  2. </template>
  3. <script setup>
  4. import { onMounted } from 'vue'
  5. onMounted(() => {
  6. const isMobile = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/)
  7. if (isMobile) {
  8. window.location.href = '/h5'
  9. } else {
  10. window.location.href = '/pc'
  11. }
  12. })
  13. </script>