You are browsing Nuxt 2 docs. Go to Nuxt 3 docs, or learn more about Nuxt 2 Long Term Support.

翻訳されたページ このページのコンテンツは古い可能性があります。

layout プロパティ

layouts ディレクトリの(第一階層の)ファイルはカスタムレイアウトになります。これらはページコンポーネントの layout プロパティで指定して利用できます


  • 型: String または Function (デフォルト: 'default')

どのレイアウトを使うか指定するために、ページコンポーネントで layout キーを使ってください: Use the layout key in your pages components to define which layout to use:

export default {
  layout: 'blog',
  // または
  layout(context) {
    return 'blog'
  }
}