通过代码实现路由的跳转
Posted So istes immer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过代码实现路由的跳转相关的知识,希望对你有一定的参考价值。
修改App.vue
<template>
<div id="app">
<button @click="homeClick">首页</button>
<button @click="aboutClick">关于</button>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'App',
methods: {
homeClick(){
this.$router.push('/home')
},
aboutClick(){
this.$router.push('/about')
}
}
}
</script>
<style>
.active{
color: #f00;
}
</style>
$router这个属性是vue实例自带的
this. $router拿到的router和main.js里面的router是一个router
以上是关于通过代码实现路由的跳转的主要内容,如果未能解决你的问题,请参考以下文章