背景:vue-router 開啟外連結 如果使用 a 標籤,會預設加上根路由,導致跳轉失效。那麼如何讓 a 標籤點選跳轉到新視窗?
解決方法:
html 程式碼
<a class="a-style" @click="linkDownload('https://www.baidu.com')">百度</a>複製程式碼
js 程式碼
linkDownload (url) {
window.open(url,'_blank') // 新視窗開啟外連結
}
複製程式碼
css 程式碼
.a-style {
color: #0500ee;
cursor: pointer;
text-decoration: underline;
}
複製程式碼