赞
踩
如何通过不同方式在 Vue 3 中传递路由参数,并在组件中使用 defineProps
或其他组合式 API 获取这些参数?
path
参数传递最常见的方式,通过在路由路径中定义动态参数,并在路由配置中设置 props: true
,将参数作为 props 传递给组件。
{
path: '/:projectId(\\d+)/report/calc/:reportId(\\d+)',
name: 'CreateCalcPage',
component: () => import('@/pages/report/calc.vue'),
props: true, // 通过 props 传递路由参数
}
defineProps
<template> <div> <p>Project ID: {{ projectId }}</p> <p>Report ID: {{ reportId }}</p> </div> </template> <script setup> import { defineProps } from 'vue'; const props = defineProps({ projectId: { type: String, required: true, }, reportId: { type: String, required: true, }, }); </script>
query
参数传递可以通过 query
参数传递数据。在这种情况下,需要手动从 route
对象中获取参数。
router.push({
name: 'CreateCalcPage',
query: {
projectId: '123',
reportId: '456',
},
});
useRoute
<template>
<div>
<p>Project ID: {{ projectId }}</p>
<p>Report ID: {{ reportId }}</p>
</div>
</template>
<script setup>
import { useRoute } from 'vue-router';
const route = useRoute();
const projectId = route.query.projectId;
const reportId = route.query.reportId;
</script>
props
选项传递可以在路由配置中使用 props
选项来传递静态或动态参数。
{
path: '/report/calc',
name: 'CreateCalcPage',
component: () => import('@/pages/report/calc.vue'),
props: { projectId: '123', reportId: '456' },
}
{
path: '/report/calc',
name: 'CreateCalcPage',
component: () => import('@/pages/report/calc.vue'),
props: route => ({ projectId: route.query.projectId, reportId: route.query.reportId }),
}
defineProps
<template> <div> <p>Project ID: {{ projectId }}</p> <p>Report ID: {{ reportId }}</p> </div> </template> <script setup> import { defineProps } from 'vue'; const props = defineProps({ projectId: { type: String, required: true, }, reportId: { type: String, required: true, }, }); </script>
path
参数传递:在路由路径中定义动态参数,并使用 props: true
将其作为 props 传递。query
参数传递:在路由跳转时通过 query
参数传递数据,并在组件中使用 useRoute
获取。props
选项传递:在路由配置中使用 props
选项传递静态或动态参数。Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。