flightgear-airports-old/src/renderer/App.vue
portree_kid b81348bdb8 Initial
2019-11-05 22:43:18 +01:00

25 lines
319 B
Vue

<template>
<div id="app" >
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'flightgear-airports'
}
</script>
<style>
html, body {
height:100%; /*both html and body*/
}
body {
margin: 0; /*reset default margin*/
}
#app {
height: 100%;
width: 100%;
}
</style>