vue 跳转页面百度
时间: 2024-07-16 07:01:17 浏览: 215
页面跳转
Vue.js 中,跳转页面通常通过组件内的导航链接或者路由管理来实现。如果你想直接跳转到百度网站,可以使用 Vue Router 的 `this.$router.push` 或者 `window.location.href`。以下是两种常见的方式:
1. 使用 Vue Router (推荐):
```javascript
// 如果你已经在使用 Vue Router:
this.$router.push('https://www.baidu.com');
```
2. 使用浏览器原生 API:
```javascript
// 在 Vue 实例之外:
window.location.href = 'https://www.baidu.com';
```
这两种方法都会立即跳转用户到百度主页。
阅读全文