vue 路由跳转
时间: 2023-06-29 21:21:03 浏览: 124
vue路由跳转时判断用户是否登录功能的实现
5星 · 资源好评率100%
Vue 路由跳转可以通过 Vue Router 实现。具体步骤如下:
1. 在 `router/index.js` 文件中定义路由:
```javascript
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
// 定义路由
const router = new Router({
routes: [
{
path: '/',
name: 'home',
component: Home
},
{
path: '/about',
name: 'about',
component: About
}
]
})
export default router
```
2. 在组件中使用 `router-link` 标签或者 `this.$router.push()` 方法进行跳转:
```html
<!-- 使用 router-link 标签 -->
<router-link to="/">Home</router-link>
<!-- 使用 this.$router.push() 方法 -->
<button @click="$router.push('/about')">About</button>
```
以上就是 Vue 路由跳转的基本方法。需要注意的是,要先通过 `Vue.use(Router)` 安装路由插件,然后通过 `new Router()` 创建一个路由实例,并在 `routes` 属性中定义各个页面的路由信息。在组件中使用 `router-link` 标签或者 `this.$router.push()` 方法进行跳转时,需要注意路由路径的正确性。
阅读全文