其实就是点击某一个元素,激发事件,使用方法进行跳转。这里记录一种最常用的方法。
需要注意的是:this.$router.push
中,是router,不是routes,有时候vscode提示错误就会搞错。
<template>
<div>
<h3>Home页面</h3>
<button @click="goPerson()"> 跳转到个人信息页</button>
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: 'HomeView',
components: {
},
methods:{
goPerson(){
this.$router.push({
path: "/user/小李四/66999669"
})
}
}
}
</script>
还可以发现,跳转过来的没有带红色,这个问题还没有学到。。