index.vue 616 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <!-- <nuxt-link to="/user">首页</nuxt-link> -->
  3. <!-- <nuxt-link to="/m_user">首页</nuxt-link> -->
  4. <nuxt-child />
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. beforeMount() {
  13. this.goto()
  14. },
  15. methods: {
  16. goto() {
  17. var system = {};
  18. system.pingtai = /(Win32|Win16|WinCE|Mac68K|MacIntel|MacIntel|MacPPC|Linux mips64)/i.test(navigator.platform);
  19. if (system.pingtai) {
  20. //电脑
  21. console.log('电脑')
  22. this.$router.push('/user')
  23. } else {
  24. //手机
  25. console.log('手机')
  26. }
  27. }
  28. }
  29. }
  30. </script>