djledda.de main
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

14 líneas
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. }