mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-25 11:28:13 +08:00
26 lines
472 B
Vue
26 lines
472 B
Vue
<script lang="ts" setup>
|
|
import { useThemeLocaleData } from '../../composables/index.js'
|
|
import SwitchAppearance from '../SwitchAppearance.vue'
|
|
|
|
const theme = useThemeLocaleData()
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="theme.appearance" class="navbar-appearance">
|
|
<SwitchAppearance />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.navbar-appearance {
|
|
display: none;
|
|
}
|
|
|
|
@media (width >= 1280px) {
|
|
.navbar-appearance {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
</style>
|