一、在新窗口打開頁面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');