feat: 更新详情页面demo展示

This commit is contained in:
XiaoDaiGua-Ray 2023-12-06 12:33:20 +08:00
parent 2c24ae5d94
commit 30e6d6dddb
2 changed files with 4 additions and 2 deletions

View File

@ -14,9 +14,11 @@ import { NCard, NSpace } from 'naive-ui'
const RouterDemoDetail = defineComponent({
name: 'RouterDemoDetail',
render() {
console.log(this.$route.query)
return (
<NSpace wrapItem={false}>
<NCard title={(this.$route.query.name as string) || 'hello'}>
{this.$route.query.name}
</NCard>
<NCard title="平层路由详情页面"></NCard>
<NCard title="TIP">
<h2>1. </h2>

View File

@ -53,7 +53,7 @@ const RouterDemoHome = defineComponent({
router.push({
path: '/router-demo/router-demo-detail',
query: {
name: '23',
name: row.name,
},
})
}}