Files
Mainpage/src/components/NavBar.vue

48 lines
930 B
Vue
Raw Normal View History

2025-03-03 19:59:03 +08:00
<template>
<el-menu mode="horizontal" router class="custom-menu">
<!-- 左侧网站名 -->
<div class="website-name">
<span style="font-weight: bold">Kisechan </span>
</div>
<!-- 右侧导航选项 -->
<div class="menu-items">
<!-- <el-menu-item index="/">首页</el-menu-item> -->
<el-menu-item @click="goToBlog">博客</el-menu-item>
<el-menu-item index="/links">友链</el-menu-item>
</div>
</el-menu>
</template>
2025-03-04 11:39:37 +08:00
<script setup>
const goToBlog = () => {
window.open("https://blog.kisechan.space", "_blank");
};
2025-03-04 11:39:37 +08:00
</script>
<style scoped>
.custom-menu {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.menu-items {
2025-03-04 11:39:37 +08:00
display: flex;
justify-content: center;
}
.el-menu--horizontal > .el-menu-item:nth-child(1) {
margin-right: auto;
}
.el-menu-item {
font-size: 16px;
}
.website-name {
font-size: 1.5em;
}
</style>