router-link (2) vue 超链接 a标签

router-link

https://blog.csdn.net/lixinyi0622/article/details/107206218/

https://blog.51cto.com/u_15082403/4634663

<router-link to="/pro/projectcontant/index">合同审核</router-link></el-button

<router-link tag="a" target="_blank" :to="{name:'detail',query:{goodsId:'1111'}}">热门好货</router-link>

使用window.open方法打开一个新页面:
window.open('https://www.example.com', '_blank');

使用a标签的target属性打开新页面:
<a href="https://www.example.com" target="_blank">点击这里打开新页面</a>

使用location.href方法在当前页面打开新页面:
window.location.href = 'https://www.example.com';

这将在当前页面中加载https://www.example.com,但表现为打开了一个新页面。

请注意,某些浏览器可能会在阻止弹出窗口时阻止window.open方法。为了确保弹出新窗口的功能正常工作,可能需要添加适当的浏览器设置或与用户交互。

https://www.jb51.net/javascript/304283abi.htm

posted @ 2023-12-21 10:08  寒冷的雨呢  阅读(255)  评论(0编辑  收藏  举报