djledda.de main
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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