前言:

       vue内部跳转是可以通过,router的方法,this.$router.push() rout-link  来跳转,这里说下她跳转外部地址的方法:

1、window.location.href = url

2、window.open('http://www.baidu.com',"_blank");   //打开一个新页面

3、手动创建a标签,然后默认点击

                    var a = document.createElement("a");

                          a.setAttribute("href", "www.baidu.com");

                          a.setAttribute("target", "_blank");

                           a.click();

Logo

前往低代码交流专区

更多推荐