```vue // your answers ``` import { shallowRef, watch } from "vue" 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 = 2 state.value = { count: 2 } {{ state.count }}