vue中的外链跳转怎么写
时间: 2024-05-04 18:15:41 浏览: 183
Vue中通过点击商品信息跳转至更加详细的商品信息页面
Vue中使用router-link组件实现跳转:
```
<router-link :to="'https://www.example.com'">外部链接</router-link>
```
如果需要直接通过 JavaScript 实现跳转,可以使用以下代码:
```
window.location.href = 'https://www.example.com'
```
阅读全文