[Vuejs]-V-model complains about props and data

0👍

Oh it’s right there in the error text…

Vue.component('my-product', {
  data: function(){ 
      return {quantity : 1}
  }
});

Leave a comment