djledda.de main
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

useDJSSRContext.ts 317 B

2ヶ月前
2ヶ月前
2ヶ月前
12345678910111213
  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. }