fix layout ui

This commit is contained in:
jxxghp
2024-05-11 12:53:42 +08:00
parent f227ae89ec
commit 2c35d0f897
11 changed files with 183 additions and 66 deletions
@@ -2,25 +2,29 @@
import type { ThemeSwitcherTheme } from '@layouts/types'
const themes: ThemeSwitcherTheme[] = [
{
name: 'auto',
title: '跟随系统',
icon: 'mdi-laptop',
},
{
name: 'light',
title: '明亮',
icon: 'mdi-weather-sunny',
},
{
name: 'dark',
title: '暗黑',
icon: 'mdi-weather-night',
},
{
name: 'purple',
title: '紫韵幽兰',
icon: 'mdi-brightness-4',
},
{
name: 'auto',
icon: 'mdi-brightness-auto',
},
]
</script>
<template>
<ThemeSwitcher :themes="themes" />
<ThemeSwitcher class="ms-2" :themes="themes" />
</template>