public/composables/metadata.ts

8 lines
187 B
TypeScript
Raw Normal View History

2022-08-07 11:37:29 -04:00
/**
* Set the page title in the format [title] | Eggworld.
* @param title The title string.
*/
export function useTitle(title: string) {
useHead({ title: `${title} | Eggworld` });
}