[Vuejs]-Vue. How to clear input file fields when switching radio buttons (vuetify component v-file-input)?

0👍

You can use a Watcher to execute a function every time radios changes value.

 watch: {
    radios() {
      this.$refs.filerr.reset();
    }
  }

Leave a comment