This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-02-08 1000 prj-cmp-01-.../src/App.vue

32 lines
540 B
Vue

<template>
<the-header title="One big application"></the-header>
<the-resources></the-resources>
</template>
<script>
import TheHeader from './components/layouts/TheHeader';
import TheResources from './components/resources/TheResources.vue';
export default {
components: {
TheHeader,
TheResources
}
};
</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>