frontend/src/App.vue

19 lines
204 B
Vue
Raw Normal View History

2018-08-28 20:50:22 +00:00
<template>
<div id="app">
<router-view/>
</div>
2018-08-28 20:50:22 +00:00
</template>
<script>
export default {
name: 'app'
}
2018-08-28 20:50:22 +00:00
</script>
<style>
2018-09-06 18:15:49 +00:00
body {
background: #f5f5f5;
min-height: 100vh;
}
2018-08-28 20:50:22 +00:00
</style>