djledda.de main
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

14 satır
320 B

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