vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

6 - 浅层 ref

Open zenner3000 opened this issue 9 months ago • 0 comments

`

const state = shallowRef({ count: 1 })

// Does NOT trigger watch(state, () => { console.log("State.count Updated") }, { deep: true })

/**

  • Modify the code so that we can make the watch callback trigger. */ state.value = {count:3}
`

zenner3000 avatar May 11 '24 15:05 zenner3000