我已经完成了这个中心部分,但是我不知道如何在右侧创建该项目。这是我的代码(是Vue文件)
<template>
<div class="navigation">
<nav>
<router-link to="/">Szukaj</router-link>
<div id="logo">S N I K E R</div>
<router-link to="/">O projekcie</router-link>
<!-- THIS SHOULD BE ON RIGHT SIDE -->
<router-link to="/">Moje konto</router-link>
</nav>
</div>
</template>
<style scoped>
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400,500|Rubik');
nav{
display: flex;
width: 100%;
background-color: #090A28;
color: #fff;
align-items: center;
justify-content: center;
}
nav a{
text-decoration: none;
text-transform: uppercase;
color: #fff;
font-family: "Rubik", sans-serif;
text-align: center;
font-size: 14px;
margin: 0 10px;
}
#logo{
width: 200px;
height: 100%;
text-align: center;
font-family: "Roboto Mono", monospace;
font-size: 26px;
padding: 10px;
}
</style>
我没有做太多的前端工作,所以我不知道该怎么做。 预先感谢您的帮助!