[Vuejs]-How to clear textfield while uncheck the checkbox in vue js?

0👍

Use a watcher on your model value.

Using vue3 syntax

const invoiceInfo = reactive(
{
 reasonForPartialAmount:'', 
 partialAmount: '', 
 isMakingPartialPayment: false,
})

watch(() => invoiceInfo.isMakingPartialPayment, value => {
 if (!value) {
   invoiceInfo.reasonForPartialAmount = ''
   invoiceInfo.partialAmount = '' 
 }
})

Leave a comment