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

<template>
<the-header></the-header>
<router-view></router-view>
</template>
<script>
import TheHeader from './components/layout/TheHeader.vue';
export default {
components: {
TheHeader
}
};
</script>
<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>