方式一 通过query方式传参 这种情况下 query传递的参数会显示在url后面 this.$router.push({ path: '/detail', query: { id: id } }) 对应路由配置: { path: '/detail', name: 'Detail', component: Detail } 子组件获取参数 this.$route.query.id 方式二 通过params方式传参 this.$router.push({ name: 'Detail', param…