Files
about-me/src/components/Header.vue
2026-02-25 00:33:20 +03:00

22 lines
351 B
Vue

<script setup>
const props = defineProps({
currentTab: String
})
</script>
<template>
<header>
<ul>
<li><RouterLink to="/">Home</RouterLink></li>
</ul>
</header>
</template>
<style scoped>
header {
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid #4F4F4F;
}
</style>