24 lines
463 B
Vue
24 lines
463 B
Vue
<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 class="viewer">
|
|
<TopBar></TopBar>
|
|
<Content></Content>
|
|
<StatusBar></StatusBar>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.viewer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
</style> |