25 lines
361 B
Vue
25 lines
361 B
Vue
|
<template>
|
||
|
|
||
|
<header>
|
||
|
<div class="header-bar">
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
// --------------------------------------------------
|
||
|
// HEADER STYLE
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
header {
|
||
|
width: 100%;
|
||
|
height: 0;
|
||
|
}
|
||
|
|
||
|
</style>
|