first commit

This commit is contained in:
jxxghp
2023-06-24 08:22:59 +08:00
commit 5b9bf63591
250 changed files with 21121 additions and 0 deletions
@@ -0,0 +1,18 @@
<script setup lang="ts">
import type { ThemeSwitcherTheme } from '@layouts/types'
const themes: ThemeSwitcherTheme[] = [
{
name: 'light',
icon: 'mdi-weather-sunny',
},
{
name: 'dark',
icon: 'mdi-weather-night',
},
]
</script>
<template>
<ThemeSwitcher :themes="themes" />
</template>