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 prj-cmp-01-start.../src/components/layouts/TheHeader.vue

26 lines
325 B
Vue
Raw Normal View History

2021-02-08 14:30:07 +01:00
<template>
<header>
<h1>One big application</h1>
</header>
</template>
<script>
export default {};
</script>
<style scoped>
header {
width: 100%;
height: 5rem;
background-color: #640032;
display: flex;
justify-content: center;
align-items: center;
}
header h1 {
color: white;
margin: 0;
}
</style>