Add basic app interface

This commit is contained in:
Nettika 2026-01-29 00:32:11 -08:00
parent f2dc318f09
commit 704c826b29
Signed by: nettika
SSH key fingerprint: SHA256:f+PJrfIq49zrQ6dQrHj18b+PJKmAldeAMiGdj8IzXCA
5 changed files with 100 additions and 14 deletions

View file

@ -1,16 +1,13 @@
<script setup lang="ts">
import AppLayout from './components/AppLayout.vue'
import Viewport from './components/Viewport.vue'
</script>
<template>
<div class="app">
<AppLayout>
<Viewport />
</div>
</AppLayout>
</template>
<style scoped>
.app {
width: 100vw;
height: 100vh;
}
</style>