1
0

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のheadプロパティとheadメソッドについて

Posted at

nuxt.js全く勉強してないが、ちょっと触ることがあって、
Object型で書いてたりfunction型で書いてたりされている違いが気になったのでメモ。

#headプロパティ
nuxt.config.js内でアプリケーションのメタ情報を定義する時に使う。
型はObject。

#headメソッド
ページのコンポーネントでメタ情報を定義する時に使う。
型はObjectまたはfunction。どっちで書いても動いた。
コンポーネントのデータをheadメソッド内でthisを使って利用することができる。

#結論
nuxt.config.jsでheadプロパティを使うときはObject型のみ。
ページのコンポーネントでheadメソッドを使うときはObject型でもfunction型でもどちらでも良い。
Object型とfunction型で挙動の違いがあるかどうかはまだわからないので追い追い調べる。

#参考

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?