[Vuejs]-Quasar\Vue: Unexpected mutation of "amountValue" prop

3👍

You need to use the amount computed property instead of amountValue prop, as v-model will change the value of the amountValue prop directly in the child component which generates this warning.

  <q-input v-model="amount"></q-input>
👤Mina

Leave a comment