Skip to content

Instantly share code, notes, and snippets.

@12cassie34
Created June 13, 2022 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 12cassie34/0d61920ae1804924747fc34dd48ae86c to your computer and use it in GitHub Desktop.
Save 12cassie34/0d61920ae1804924747fc34dd48ae86c to your computer and use it in GitHub Desktop.
Vue Reactivity
import { ref, watchEffect } from 'vue'
const A = ref(1)
const B = ref(2)
const C = ref()
watchEffect(() => {
C.value = A.value + B.value
})
A.value = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment