跳轉新窗口主要依賴的是<a/>標簽
html實現:
<a href="https://www/baidu.com" target="_blank"/>
vue 實現
const { href } = this.$router.resolve({
path: "/visual/detail",
query: {
userNum: this.activeUserNum,
dateRange: this.dateRange,
keyName: this.keyName,
athUrl: this.pathUrl,
uname: this.uname,
},
});
window.open(href, "_blank");
