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
Raw Normal View History

2021-02-08 12:00:06 +01:00
<template>
<the-header title="One big application"></the-header>
2021-02-08 15:15:01 +01:00
<the-resources></the-resources>
2021-02-08 12:00:06 +01:00
</template>
<script>
2021-02-08 14:16:56 +01:00
import TheHeader from './components/layouts/TheHeader';
2021-02-08 15:15:01 +01:00
import TheResources from './components/resources/TheResources.vue';
2021-02-08 12:00:06 +01:00
export default {
components: {
2021-02-08 15:15:01 +01:00
TheHeader,
TheResources
2021-02-08 12:00:06 +01:00
}
};
</script>
2021-02-08 12:19:22 +01: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>