3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Nuxt クエリパラメータによってlayoutを切り替える

Last updated at Posted at 2019-11-07

クエリパラメータによって使用するlayoutファイルを切り替えなければならない場面に遭遇したので備忘録。
公式ドキュメントにある通りです。

layoutの使い方

ページコンポーネントでlayoutプロパティを指定することでカスタムレイアウトが使用できます。
指定がない場合はdefaultのlayoutファイルが使われます。

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

クエリパラメータでlayoutファイルを切り替える

layoutメソッドの引数にコンテキストを渡すことができます。
localhost:3000/hoge?type=specialにリクエストがきた時にspecialレイアウトを使用する場合

hoge/index.vue
export default {
  layout({ query }) {
     if (query.type === 'special') {
        return 'special'
     }
     return 'default'
   }
}
3
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?