LoginSignup
0
0

More than 3 years have passed since last update.

「' '」はString、「` `」は実行。

Last updated at Posted at 2020-09-06

「''」はStringで文字列などを入れますが、「``」は実行するためのもの(※文字列も入れられる)です。
この中ではプロパティのデータを持ってきたりすることができます。

Vue.jsでVuexを使っている時を参考にあげると、
下記のような実装が可能です。

index.vue
this.$router.push(
  `/${this.$store.state.hoge.fuga}/index`
)

pushのパス内でstateのプロパティを引っ張ってきて参照したりすることができます。

0
0
2

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