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

Vueのリアクティブ

Posted at

Vue 3ではVue 2と異なり、Composition API の使用が推奨されている。

Ref

Options API よりも、リアクティブな値を扱いたい場合に、ref を使用する。ref でネストされたオブジェクトもリアクティブになる。

記述例:

<script lang="ts" setup>
import { ref } from "vue";

const setRef = ref(0);

</script>

Reactive

ただし、String や Number といった基本型を宣言できる一方で、Object や Array を宣言することも可能だが、監視できるのは宣言された変数自身のみである。

Reactive
Object や Array のようなオブジェクト型の中身も監視したい場合は、reactive を使用する。

<script lang="ts" setup>
import { reactive } from 'vue'

const state = reactive({ count: 0 })
</script>
0
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
0
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?