Files
Mainpage/src/components/NavBar.vue

22 lines
399 B
Vue
Raw Normal View History

2025-03-03 19:59:03 +08:00
<template>
<el-menu
mode="horizontal"
2025-03-04 11:39:37 +08:00
router
>
2025-03-04 11:39:37 +08:00
<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>
2025-03-04 11:39:37 +08:00
<script setup>
</script>
<style scoped>
.el-menu {
display: flex;
justify-content: center;
}
</style>