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-06 cmp-adv-01-start.../src/components/layout/TheHeader.vue

22 lines
313 B
Vue

<template>
<header>
<h1>More on Vue Components</h1>
</header>
</template>
<style scoped>
header {
width: 100%;
height: 5rem;
display: flex;
justify-content: center;
align-items: center;
background-color: #14005e;
}
header h1 {
color: white;
margin: 0;
}
</style>