码迷,mamicode.com
首页 > Web开发 > 详细

VUE的标签跳转和在script中的JS跳转代码

时间:2018-01-01 00:30:28      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:指定   span   utf-8   gpo   world   his   link   methods   div   

标签跳转:相当于a标签,在页面点击后跳转到to指定的路径文件

<router-link to="HelloWorld(网页路径或名字)"></router-link>

在script>methods中:

变量名:function(){
固定写法-->this.$router.push({
      name:跳转网页的名字,
      query: {
        id(变量名):赋值url后面的参数
        test(变量名)赋值url后面的参数
      }
    )}
  }

methods:{
    ufo: function(){
       this.$router.push({
         name:FuckWorld,
         query: {
           ie:utf-8,
         }
       })
    }
  }

 

第二种跳转:不可回退的跳转代码

  methods:{
    ufo: function(){
       this.$router.replace({
         name:FuckWorld,
         query: {
           ie:utf-8,
         }
       })
    }
  }

 

VUE的标签跳转和在script中的JS跳转代码

标签:指定   span   utf-8   gpo   world   his   link   methods   div   

原文地址:https://www.cnblogs.com/xiaozhu007/p/8159384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!