[Vuejs]-V-checkboxes are true when the page is loaded

0👍

I managed to do it

:success="!!enquiryForm.preferences && !$v.enquiryForm.preferences.$invalid"
:success-messages="(!!enquiryForm.preferences && !$v.enquiryForm.preferences.$invalid) ? 'Ok' : ''"

But, I want to show the success message ‘Ok’ and error message only once below the checkboxes. How do I do it?

Leave a comment