2023-08-27 10:15:04 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const route = useRoute()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<Title>笔顺码字典</Title>
|
|
|
|
<client-only>
|
|
|
|
<el-menu
|
|
|
|
:default-active="route.path"
|
|
|
|
class="el-menu-demo"
|
|
|
|
mode="horizontal"
|
|
|
|
:ellipsis="false"
|
|
|
|
:router="true"
|
|
|
|
>
|
2023-08-27 16:30:58 +00:00
|
|
|
<el-menu-item index="/tools/qqazk">笔顺码字典</el-menu-item>
|
2023-08-27 10:15:04 +00:00
|
|
|
<div class="flex-grow" />
|
2023-08-27 16:30:58 +00:00
|
|
|
<el-menu-item index="/tools/qqazk/about">关于</el-menu-item>
|
|
|
|
<el-menu-item v-if="route.path=='/tools/qqazk/search'" index="/tools/qqazk/search">搜索</el-menu-item>
|
|
|
|
<el-menu-item v-if="route.path.startsWith('/tools/qqazk/details')" index="" style="color: var(--el-menu-active-color)">结果</el-menu-item>
|
2023-08-27 10:15:04 +00:00
|
|
|
</el-menu>
|
|
|
|
</client-only>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
a{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
</style>
|