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

<template>
<header>
<h1>{{ title }}</h1>
</header>
</template>
<script>
export default {
props: ['title']
};
</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>