1234567891011
  1. import { computed, watch } from 'vue'
  2. import { usePage } from '@inertiajs/inertia-vue3'
  3. export function useFormErrorReset(form) {
  4. const errors = computed(() => usePage().props.value.errors)
  5. watch(errors, () => {
  6. form.clearErrors()
  7. })
  8. }