Second commit
This commit is contained in:
@@ -1,6 +1,24 @@
|
||||
<script setup lang="ts">
|
||||
import Content from './components/viewer/content/Content.vue';
|
||||
import StatusBar from './components/viewer/statusbar/StatusBar.vue';
|
||||
import TopBar from './components/viewer/TopBar.vue';
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<NuxtRouteAnnouncer />
|
||||
<NuxtWelcome />
|
||||
<div class="viewer">
|
||||
<TopBar></TopBar>
|
||||
<Content></Content>
|
||||
<StatusBar></StatusBar>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.viewer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user