feat(Logo): Add Logo component

This commit is contained in:
kailong321200875
2022-01-16 19:35:39 +08:00
parent 41281c4d54
commit 958edefe7b
12 changed files with 134 additions and 12 deletions

View File

@@ -9,6 +9,8 @@ import { UserInfo } from '@/components/UserInfo'
import { Screenfull } from '@/components/Screenfull'
import { Breadcrumb } from '@/components/Breadcrumb'
import { TagsView } from '@/components/TagsView'
import { Backtop } from '@/components/Backtop'
import { Setting } from '@/components/Setting'
import AppView from './components/AppView.vue'
const appStore = useAppStore()
@@ -70,6 +72,10 @@ export default defineComponent({
</div>
<AppView></AppView>
</div>
<Backtop></Backtop>
<Setting></Setting>
</section>
)
}