通过 100+ 个技巧学习 Nuxt!

Meta 标签

了解如何将 Nuxt 2 迁移到 Nuxt Bridge 新的 meta 标签。

如果需要在 head 中访问组件状态,您应该迁移到使用 useHead

如果需要使用 Options API,在使用 defineNuxtComponent 时,可以使用 head() 方法。

迁移

设置 bridge.meta

import { defineNuxtConfig } from '@nuxt/bridge'
export default defineNuxtConfig({
  bridge: {
    meta: true,
    nitro: false // If migration to Nitro is complete, set to true
  }
})

更新 head 属性

在您的 nuxt.config 中,将 head 重命名为 meta。(请注意,对象不再具有用于去重的 hid 键。)

export default {
  head: {
    titleTemplate: '%s - Nuxt',
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' },
      { hid: 'description', name: 'description', content: 'Meta description' }
    ]
  }
}

useHead 组合式函数

Nuxt Bridge 提供了一个新的 Nuxt 3 meta API,可以通过新的 useHead 组合式函数访问。

<script setup lang="ts">
useHead({
  title: 'My Nuxt App',
})
</script>
这个 useHead 组合式函数在底层使用 @unhead/vue(而不是 vue-meta)来操作您的 <head>
我们建议不要在 useHead 之外使用原生的 Nuxt 2 head() 属性,因为它们可能会冲突。

有关如何使用此组合式函数的更多信息,请参阅文档

Options API

<script>
// if using options API `head` method you must use `defineNuxtComponent`
export default defineNuxtComponent({
  head (nuxtApp) {
    // `head` receives the nuxt app but cannot access the component instance
    return {
      meta: [{
        name: 'description',
        content: 'This is my page description.'
      }]
    }
  }
})
</script>
可能存在破坏性更改:head 接收 nuxt 应用,但无法访问组件实例。如果您的 head 中的代码尝试通过 thisthis.$data 访问数据对象,您将需要迁移到 useHead 组合式函数。

标题模板

如果要使用函数(以进行完全控制),则不能在 nuxt.config 中设置此项,建议将其设置在您的 /layouts 目录中。

layouts/default.vue
<script setup lang="ts">
useHead({
  titleTemplate: (titleChunk) => {
    return titleChunk ? `${titleChunk} - Site Title` : 'Site Title';
  }
})
</script>