mirror of
https://github.com/BluemediaDev/video-platform.git
synced 2025-05-10 09:21:36 +02:00
23 lines
353 B
Vue
23 lines
353 B
Vue
<template>
|
|
<div class="navbar">
|
|
<router-link to="/">Home</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Navbar",
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.navbar {
|
|
height: 50px;
|
|
display: flex;
|
|
justify-content: left;
|
|
flex-wrap: nowrap;
|
|
overflow: hidden;
|
|
background-color: #fafafc;
|
|
box-shadow: 0 1px 6px 0 #888;
|
|
}
|
|
</style>
|