vue watch doesn't work on prop
// in case you want to watch a prop in component
// you can change props to refs and it will work.
// Example (composition api):
import { watch, toRefs } from '@vue/composition-api'
setup() {
const propsRef = toRefs(props)
watch(propsRef.automation, () => {
console.log('watching automation prop')
})
}