djledda.de main
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

14 righe
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. }