2026-04-03 23:14:37 +08:00
|
|
|
<script setup>
|
2026-04-03 23:20:23 +08:00
|
|
|
import VPSwitchAppearance from "vitepress/dist/client/theme-default/components/VPSwitchAppearance.vue";
|
2026-04-13 16:23:07 +08:00
|
|
|
import DefaultTheme from "vitepress/theme";
|
2026-04-03 23:14:37 +08:00
|
|
|
import GitHubStars from "./GitHubStars.vue";
|
|
|
|
|
|
|
|
|
|
const { Layout } = DefaultTheme;
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<Layout>
|
|
|
|
|
<template #nav-bar-content-after>
|
2026-04-03 23:20:23 +08:00
|
|
|
<div class="nav-bar-right">
|
|
|
|
|
<VPSwitchAppearance />
|
|
|
|
|
<GitHubStars />
|
|
|
|
|
</div>
|
2026-04-03 23:14:37 +08:00
|
|
|
</template>
|
|
|
|
|
</Layout>
|
|
|
|
|
</template>
|