UNPKG

vuepress-theme-hope

Version:

A light vuepress theme with tons of features

11 lines 380 B
import { computed } from "vue"; import { useThemeData, useThemeLocaleData, } from "@theme-hope/composables/index"; export const useBlogOptions = () => { const theme = useThemeData(); const themeLocale = useThemeLocaleData(); return computed(() => ({ ...theme.value.blog, ...themeLocale.value.blog, })); }; //# sourceMappingURL=useBlogOptions.js.map