[Vuejs]-How to wait for parent prop

0๐Ÿ‘

โœ…

As per the direction in the comment from @Niklesh Raut, I resolved the issue using a watch in the child:

watch: {
      carModels: function (carModels) {
        console.log(carModels);
      }
    },

Leave a comment