Started migration of frontend to Vue

This commit is contained in:
Yeicor
2024-02-08 20:59:50 +01:00
parent 56c097aea3
commit 458726d472
11 changed files with 268 additions and 69 deletions

26
src/App.vue Normal file
View File

@@ -0,0 +1,26 @@
<script setup lang="ts">
import ModelViewer from './ModelViewer.vue'
</script>
<template>
<ModelViewer></ModelViewer>
</template>
<style scoped>
</style>
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: #000;
color: #fff;
}
}
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
</style>