I have watcher with the same name as a prop. The prop is dynamically set in a parent component on some event. I need something that triggers some function in the child component with property value every time the event is triggered on parent -even if the prop it set is the same. Is there any watcher option or other method of handling such case which would allow me to do that ?
What I tried (this is in Post component):
watch: {
    replyClicked:
    {
        handler(newVal, oldVal)
        {
            console.log(newVal, oldVal);
        },
        immediate:true
    }
},
the console.log only prints when newVal is different from oldVal, I need some function to trigger even if they are the same. The parent component looks like this:
<RenderPost @onReply="onReply" />
<Post :replyClicked="replyClicked" />
and these are the parent data and method:
data()
{
    return {
        replyClicked : null
    }
},
methods :
{
    onReply(id)
    {
        this.replyClicked = id;
    }
}
 
    