berlin-picnic-frontend/src/App.vue

17 lines
206 B
Vue

<!-- src/App.vue -->
<template>
<div id="app">
<RouterView />
</div>
</template>
<script setup>
import { RouterView } from 'vue-router'
</script>
<style scoped>
#app {
height: 100vh;
}
</style>