How many times have you seen (or written) code where a parent component passes a boolean prop to a child component solely to trigger a method inside that child? <! -- ❌ Parent passing a trigger flag --> <ChildComponent :shouldReset= "isResetting" /> Inside the child component, you end up writing...
Source: [Dev.to](https://dev.to/kickbuttowski80/stop-using-props-watchers-just-to-trigger-actions-in-child-components-vue-35-usetemplateref--5gdk)