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/components/layouts/TheHeader.vue

28 lines
337 B
Vue
Raw Normal View History

2021-02-08 14:30:07 +01:00
<template>
<header>
<h1>{{ title }}</h1>
2021-02-08 14:30:07 +01:00
</header>
</template>
<script>
export default {
props: ['title']
};
2021-02-08 14:30:07 +01:00
</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>