UNPKG

valaxy-theme-sakura

Version:

<h1 align="center">valaxy-theme-sakura</h1> <pre align="center"> 一个简单、个性化、可爱的动漫风格博客主题 ❥(ゝω・✿ฺ) </pre>

12 lines (10 loc) 274 B
import { useConfig } from 'valaxy' import { computed } from 'vue' import type { ThemeConfig } from '../types' /** * getThemeConfig */ export function useThemeConfig<T = ThemeConfig>() { const config = useConfig<T>() return computed(() => config!.value.themeConfig) }