mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
30 lines
515 B
TypeScript
30 lines
515 B
TypeScript
/**
|
|
*
|
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
|
*
|
|
* @date 2023-08-09
|
|
*
|
|
* @workspace ray-template
|
|
*
|
|
* @remark 今天也是元气满满撸代码的一天
|
|
*/
|
|
|
|
import { NSpace } from 'naive-ui'
|
|
import SiderBar from '@/layout/components/SiderBar/index'
|
|
|
|
const HeaderWrapper = defineComponent({
|
|
name: 'HeaderWrapper',
|
|
setup() {
|
|
return {}
|
|
},
|
|
render() {
|
|
return (
|
|
<NSpace wrapItem={false} size={[0, 0]}>
|
|
<SiderBar />
|
|
</NSpace>
|
|
)
|
|
},
|
|
})
|
|
|
|
export default HeaderWrapper
|