2024-01-07 01:54:25 +08:00

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>