vuetify checkbox click firing twice

  1. Ensure that the v-model directive is not used in conjunction with the :value prop.

  2. Check if the click event is not being handled twice in the code.

  3. Verify that there are no duplicate event listeners being registered for the checkbox component.

  4. Consider using the @change event instead of @click to handle the checkbox state changes.