mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
28 lines
582 B
TypeScript
28 lines
582 B
TypeScript
/**
|
|
*
|
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
|
*
|
|
* @date 2023-06-30
|
|
*
|
|
* @workspace ray-template
|
|
*
|
|
* @remark 今天也是元气满满撸代码的一天
|
|
*/
|
|
|
|
import { NCard, NSpace } from 'naive-ui'
|
|
|
|
const RouterDemoDetail = defineComponent({
|
|
name: 'RouterDemoDetail',
|
|
|
|
render() {
|
|
return (
|
|
<NSpace wrapItem={false}>
|
|
<NCard title="平层路由详情页面">我是平层路由详情页面</NCard>
|
|
<NCard title="TIP">可以点击面包屑或者菜单返回到主页面</NCard>
|
|
</NSpace>
|
|
)
|
|
},
|
|
})
|
|
|
|
export default RouterDemoDetail
|