//父页面
<template>
<button @click="toThreePage">页面3-params传参</button>
</template>
scriptmethods: {
toThreePage() {
this.$router.push({path: ‘/home/three‘, query: {id: 1, name: ‘zhangsan‘}})
}}
//子页面
<p>ID:{{ $route.query.id}}</p><p>名称:{{ $route.query.name}}</p>
原文:https://www.cnblogs.com/joannaPiao/p/12028227.html