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

14 行
317 B

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