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 1 year has passed since last update.

Vue.jsのリアクティブなデータの定義でハマったのでメモ

Posted at

Vueでリアクティブなデータを宣言するときにハマったのでメモします。

Vueでdataを宣言する書き方は

data() {
  return {
    count: 0,
    message: "Hello",
  };
}

data: {
  count: 0,
  message: "Hello",
}

の2種類あります。
この違いをわからずになんとなくで使っていたためにハマってしまいました。

結論から書くと
前者の書き方(returnを使う方)が推奨のようです。
後者の書き方ではリアクティブなデータが反映されません。

今回は、リアクティブなデータを使用したいのに後者の書き方をしていたため、
データの値が変化しても反映されず、なんでだ〜〜となってしまいました。

Vue3からはComposition APIを使って、もっと簡単にデータを定義できるので
これで悩むことは無くなるのでしょうか。
ただ、ref()をつけ忘れてハマる未来が見えるので気をつけようと思います。

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?