vue.js 实现点击按钮跳转页面
时间: 2023-09-21 09:03:33 浏览: 124
要实现点击按钮跳转页面,可以使用 Vue.js 提供的路由功能。首先需要在 Vue.js 项目中配置路由,然后在按钮的点击事件中通过编程方式跳转到指定的页面。
以下是实现的具体步骤:
1. 配置路由
在 Vue.js 项目的 router/index.js 文件中定义路由:
```
import Vue from 'vue'
import Router from 'vue-router'
import HomePage from '@/components/HomePage'
import OtherPage from '@/components/OtherPage'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'HomePage',
component: HomePage
},
{
path: '/other',
name: 'OtherPage',
component: OtherPage
}
]
})
```
上面的代码定义了两个路由,分别对应首页和其他页面。
2. 在按钮点击事件中跳转页面
在 Vue.js 组件的 methods 中定义按钮的点击事件,并且使用 Vue.js 提供的 $router.push() 方法跳转到指定的页面:
```
<template>
<div>
<button @click="goToOtherPage">跳转到其他页面</button>
</div>
</template>
<script>
export default {
methods: {
goToOtherPage () {
this.$router.push('/other')
}
}
}
</script>
```
上面的代码中,通过在按钮的 click 事件中调用 goToOtherPage 方法来跳转到指定的页面。在方法中使用 this.$router.push() 方法并传入路由路径来实现页面跳转。
以上就是使用 Vue.js 实现点击按钮跳转页面的基本方法。
阅读全文