Skip to content
Advertisement

trigger watch function in Vue 3 composition Api

I have set this reactive value inside the setup

const refValue = ref('foo');

and set a watch function to it

JavaScript

the watch function gets not activated if I manually change the value,

it gets only activated if a add a function which changes the value

JavaScript

why does watch only gets triggered when using a function to change the value,
I thought that const refValue = ref('foo'); is reactive so watch should detect all changes

JavaScript

Advertisement

Answer

Try out immediate option and use a function as first parameter that returns the observed property :

JavaScript
Advertisement