vue的跳转方式如下:
第一种:
<router-link tag="a" :to="{name:'测试页',params:{id:1}}">点击跳转(name)</router-link>
第二种:
<router-link tag="a" :to="{path:'./test',query:{id:1}}">点击跳转(path)</router-link>
第三种:
html代码:
<div @click="clickTo">点击跳转</div>
js:
this.$router.push({ name: '测试页', params: { id: 1 }})
第四种:
html代码:
<div @click="clickTo">点击跳转</div>
js:
this.$router.push({ path: './test', query: { id: 1 }})
总结:
第1,2种,是通过<router-link>标签跳转,第3,4种是通过事件跳转页面。
第1,3种,是通过name命名路由的方式跳转传参,跳转后页面刷新,参数会丢失(需要传参跳转的时候,不建议使用);
第2,4种,是通过path路由跳转,跳转后页面刷新,参数不会丢失,跟我们平时写的路径后面携带参数类似:/test?id=1 (推荐使用);
补充接收参数:
<script>
export default{
data(){
return{
getData:null,
}
},
created(){
this.getData = this.$route.params.id; //第1,3种方式
this.getData = this.$route.query.id; //第2,4种方式
},
}
</script>