chore: upgrade to nuxt 4
This commit is contained in:
13
app/composables/metadata.ts
Normal file
13
app/composables/metadata.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Set the page title in the format [title] | [site name].
|
||||
* @param title The title string.
|
||||
*/
|
||||
export function useTitle(title: string, description?: string) {
|
||||
useHead({
|
||||
title: `${title} | Oeufs?`,
|
||||
meta: [
|
||||
{ name: "viewport", content: " width=device-width,initial-scale=1" },
|
||||
{ name: "description", content: description ?? "" },
|
||||
],
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user