Files
dolphin-frontend/src/layouts/BaseLayout/components/common/SettingDrawer/index.vue
2021-11-18 02:04:50 +08:00

22 lines
597 B
Vue

<template>
<n-drawer v-model:show="app.settingDrawer.visible" :width="330">
<n-drawer-content title="主题配置" :native-scrollbar="false">
<dark-mode />
<nav-mode />
<system-theme />
<page-func />
<page-view />
<theme-config />
</n-drawer-content>
</n-drawer>
</template>
<script lang="ts" setup>
import { NDrawer, NDrawerContent } from 'naive-ui';
import { useAppStore } from '@/store';
import { DarkMode, NavMode, SystemTheme, PageFunc, PageView, ThemeConfig } from './components';
const app = useAppStore();
</script>
<style scoped></style>