this.$router怎么跳转外链
时间: 2023-11-07 14:53:04 浏览: 164
如果你想在 Vue.js 中使用 `this.$router` 跳转到外部链接,你可以使用 `window.location.href` 或者 `window.open()` 方法。
例如,要在 Vue.js 中从当前页面跳转到 `https://www.example.com`,你可以使用以下代码:
```javascript
// 使用 window.location.href 跳转
this.$router.push('/')
window.location.href = 'https://www.example.com'
// 使用 window.open() 跳转
this.$router.push('/')
window.open('https://www.example.com')
```
其中,`window.location.href` 方法会在当前窗口中打开链接,而 `window.open()` 方法会在新窗口中打开链接。请注意,这两种方法都会导致当前页面的 Vue 实例和数据被销毁,因此你需要在跳转前保存必要的数据。
相关问题
this.$router.push可以外链跳转
不好意思,但是我不是一个能够执行代码的AI。作为一个文本模型,我无法直接运行或解释代码。我只能提供一般性的建议。关于Vue.js中的`this.$router.push`方法,它用于在应用程序内部进行路由跳转,而不是外链跳转。如果你想要进行外链跳转,可以考虑使用原生的JavaScript方法`window.location.href`来实现。例如:`window.location.href = 'http://www.example.com'`可以在当前窗口中打开一个新的链接。具体的实现方式可能会因你的具体需求和项目结构而有所不同,请确保在使用时仔细阅读相关文档和指南。
this.$router.push跳转
this.$router.push是Vue Router提供的方法之一,用于在Vue组件中进行编程式导航,即通过JS代码实现页面的跳转。它可以跳转到指定的URL,并在history栈中添加一个记录,点击后退会返回上一个页面。除了字符串类型的URL,它还可以接受一个对象作为参数,用于更加灵活地配置路由跳转。此外,还有其他几种Vue Router提供的跳转方法,如this.$router.replace和this.$router.go。
阅读全文