djledda.de main
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 个月前
2 个月前
2 个月前
2 个月前
2 个月前
1234567891011121314
  1. import { type MaybeRefOrGetter, useSSRContext } from "vue";
  2. export type DJSSRContext = {
  3. head: {
  4. title: MaybeRefOrGetter<string>;
  5. metatags: MaybeRefOrGetter<Array<{ name: string, content: string }>>;
  6. };
  7. registry: Record<string, unknown>;
  8. styles: Record<string, string>;
  9. };
  10. export default function useDJSSRContext() {
  11. return useSSRContext<DJSSRContext>();
  12. }