Setting Page Titles in Nuxt 3

Originally published at: Setting Page Titles in Nuxt 3 - Server Side Up

When migrating from Nuxt 2 to Nuxt 3, setting page titles is slightly different. In Nuxt 2 setting page meta data is done through the head() helper function. Or, if you define a title globally, you could set it in the nuxt.config.js. In Nuxt 3, page titles are set through the useMeta() composable function or…