feat: 完成新开页的设计

This commit is contained in:
MTrun
2021-12-21 14:57:31 +08:00
parent 35a05c046b
commit f9d0547fc3
14 changed files with 262 additions and 44 deletions
+3
View File
@@ -0,0 +1,3 @@
import HeaderPro from './index.vue'
export { HeaderPro }
+13
View File
@@ -0,0 +1,13 @@
<template>
<Header>
<template #ri-left>
</template>
<template #ri-right>
<UserInfo />
</template>
</Header>
</template>
<script setup lang="ts">
import { Header } from '@/layout/components/Header'
import { UserInfo } from '@/components/UserInfo'
</script>