This commit is contained in:
2025-03-04 11:39:37 +08:00
parent 90c0c9002a
commit ebff70fea3
13 changed files with 47 additions and 60 deletions

View File

@ -1,16 +1,22 @@
<template>
<el-menu
mode="horizontal"
:router="true"
class="nav-menu"
:default-active="$route.path"
router
>
<el-menu-item index="/"></el-menu-item>
<el-menu-item>
<a href="https://blog.kisechan.space/" target="_blank">博客</a>
<el-menu-item index="/"></el-menu-item>
<el-menu-item >
<a href="blog.kisechan.space" target="_blank">博客</a>
</el-menu-item>
<el-menu-item index="/about">关于</el-menu-item>
</el-menu>
</template>
<style scoped></style>
<script setup>
</script>
<style scoped>
.el-menu {
display: flex;
justify-content: center;
}
</style>