字符串:
美文网首页
Vue.导航

Vue.导航

作者: 浮雲往事 | 来源:发表于2018-06-10 10:04 被阅读0次

    1.<router-link :to="..."></router-link>
        字符串: <router-link :to="home">首页</router-link>
        对象    : <router-link :to"{path:'home'}">首页</router-link>
        传递参数:<router-link :to={path:'home',params:{cid:123}}></router-linlk>

    2.如果想在js中实现跳转可以这样:
       this.$router.push({path:'home'}),顺便解释一下这句话的意思

       this:当前Vue的实例;$router: 当前Vue实例的router方法(框架提供的)

    相关文章

      网友评论

          本文标题:Vue.导航

          本文链接:https://www.haomeiwen.com/subject/wukfeftx.html