You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GCSGUI/src/App.vue

17 lines
256 B
Vue

<template>
<div id="map-viewer">
<SceneViewer></SceneViewer>
</div>
</template>
<script setup lang="ts">
import SceneViewer from './components/map/SceneViewer.vue'
</script>
<style scoped>
#map-viewer {
width: 100%;
height: 100vh;
}
</style>