header.vue 286 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 <template> <header> 로고 들어갈 자리 <br> 디자이너 구합니다. </header> </template> <script> export default { name: 'header', data () { return { } } } </script> <style> header{ height: 150px; background-color: grey; } </style>