this.$router.push跳转组件
时间: 2023-10-13 17:03:49 浏览: 104
Vue this.$router.push(参数)实现页面跳转操作
this.$router.push是Vue Router中的方法,用于进行页面跳转。根据提供的引用内容,我们可以有以下几种方式使用this.$router.push进行组件跳转:
1. 使用组件名称进行跳转:可以使用以下方式进行跳转,其中componentId是组件的编号:
this.$router.push({name: 'CreateComponents', params: {componentId}}) [1]
2. 使用组件路径进行跳转:可以使用以下方式进行跳转,其中componentId是组件的编号:
this.$router.push(`/basic-comp-mgt/comps-detail/${componentId}`) [1]
3. 使用参数名和参数值进行跳转:可以使用以下方式进行跳转,其中'XXXX'是目标组件的名称,params是需要传递的参数对象:
return this.$router.push({name: 'XXXX', params}) [2]
4. 使用query参数进行跳转:可以使用以下方式进行跳转,其中'task-instance'是目标组件的名称,query是需要传递的查询参数对象:
return this.$router.push({name: 'task-instance', query: {'pageSize': 10, 'pageNo':1, 'searchVal':item.collectConfName } }) [3]
这些方法都可以根据具体的需求和场景选择适合的方式进行组件跳转操作。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Vue 使用this.$router.push实现页面跳转](https://blog.csdn.net/qq_42970173/article/details/102723497)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文