Watch Nested Component Data with VueJS

Originally published at: Watch Nested Component Data with VueJS - Server Side Up

There are multiple times where you need to watch pieces of data within your VueJS component. However, did you know you can watch nested component data with VueJS? Let’s say you are mapping a data to a model that looks like this: export default { data(){ return { form: { name: ‘’, dob: ‘’, job:…