fix: 🐛 修改测试详情页路由参数拼写错误

This commit is contained in:
zimo493
2025-08-14 09:59:23 +08:00
parent a625bd311c
commit c7b797278a

View File

@@ -8,7 +8,7 @@ export default defineComponent({
const navigateToDetail = async (id: number) => { const navigateToDetail = async (id: number) => {
await router.push({ await router.push({
path: "/detail/" + id, path: "/detail/" + id,
query: { mes: `msg${id}` }, query: { message: `msg${id}` },
}); });
}; };
return () => return () =>