This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/App.vue

31 lines
426 B
Vue
Raw Normal View History

2021-06-27 14:38:22 +02:00
<template>
2021-06-27 17:21:40 +02:00
<the-header></the-header>
2021-06-27 17:09:03 +02:00
<router-view></router-view>
2021-06-27 14:38:22 +02:00
</template>
2021-06-27 17:09:03 +02:00
2021-06-27 17:21:40 +02:00
<script>
import TheHeader from './components/layout/TheHeader.vue';
export default {
components: {
TheHeader
}
};
</script>
2021-06-27 17:09:03 +02:00
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
box-sizing: border-box;
}
html {
font-family: 'Roboto', sans-serif;
}
body {
margin: 0;
}
</style>