一.get方式(url传参): 1.动态路由传参: 父组件: selectItem (item) { this.$router.push({ path: `/recommend/${item.id}` }) } router.js: { path: '/recommend', component: Recommend, children: [ { path: ':id', // [或者/recommend/:id] component: Disc } ] }, 子组件: this.$route.…