frontend/src/App.vue

19 lines
204 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>
<style>
body {
background: #f5f5f5;
min-height: 100vh;
}
</style>