一、在新窗口打开页面html
方法1:<vue-link>标签实现新窗口打开vue
<router-link target="_blank" :to="{path:'/home',query:{id:'1'}}">新页面打开home页</router-link>
方法2:this
let routeUrl = this.$router.resolve({ path: "/share", query: {id:96} }); window.open(routeUrl.href, '_blank');