背景: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;
}
复制代码
所有评论(0)