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

meta.ts 320 B

2ヶ月前
12345678910111213
  1. import { useSSRContext, toValue, type MaybeRefOrGetter } from 'vue';
  2. export default function useHead(params: {
  3. title: MaybeRefOrGetter<string>,
  4. }) {
  5. const context = useSSRContext();
  6. if (context) {
  7. context.meta ??= {
  8. title: toValue(params.title),
  9. meta: {},
  10. };
  11. }
  12. }