1
0

More than 3 years have passed since last update.

テンプレート文字列について

Last updated at Posted at 2019-11-25

コードレビューでテンプレート文字列を知ったのでめも :pencil: (JavaScript初歩的なことをわかってなすぎる... 勉強になりました :pray:

変更前

  • テンプレート文字列のことを知らずに使ってて以下のコードを書いていた
<nuxt-link :to="'/sample/request/' + `${book.id}`">
  詳細
</nuxt-link>

変更後

  • テンプレート文字列使うならこんな感じで書いた方が良さそうとアドバイスしてもらった
<nuxt-link :to="`/sample/request/${book.id}`">
  詳細
</nuxt-link>

参考

テンプレート文字列 - JavaScript | MDN

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