[Vuejs]-Vue 3 checkbox component does not work in laravel as checkbox (Accept terms) situation

0👍

I’ve found the solution.
In the checkbox template instead of using @input="updateField()" I replaced that with @change="updateField()"
That’s all!

Leave a comment