登录..._this.$router.push 不能跳转多级路由">
当前位置:   article > 正文

vue this.$router.push(’./map’);无法跳转的问题_this.$router.push 不能跳转多级路由

this.$router.push 不能跳转多级路由

1.vue this.$router.push(’./map’);无法跳转的问题

<template>
  <div style="text-align: center">
    <el-button type="primary" style="margin-top: 40vh" @click="onLogin">登录</el-button>
  </div>
</template>
<script>
  export default {
    name: 'login',
    data () 
      return {
      }
    },
    methods: {
      onLogin:function () {
        this.$router.push('./map');
      }
    },
  }
</script>
<style scoped>
    
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

router中是这样引入的

import map from '@components/map'
  • 1

点击事件无法跳转

2.解决方法:

改变引入方式

import map=r=>require.ensure([],()=>(require('../components/map')),'map')
  • 1

这样通过静态引入就没问题了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/285267?site
推荐阅读
相关标签
  

闽ICP备14008679号