first commit
This commit is contained in:
22
src/components/Header.vue
Normal file
22
src/components/Header.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user