thesmythgroup / vue-toolkit

Completely style-able, fully accessible UI components, built with Vue.
https://thesmythgroup.github.io/vue-toolkit/
MIT License
2 stars 1 forks source link

Form reset #11

Closed justinlettau closed 3 years ago

justinlettau commented 3 years ago

Describe the Feature

The ability to reset a form back to it's initial values and default state. Use case: User makes changes to form, and then clicks a "Cancel" option.

Resetting a form should:

Suggested Solution

Potentially expose reset as a property on the slot context.

<v-form v-slot="{ reset }">
  <!-- other stuff, etc -->

  <v-button @click="reset"> Cancel </v-button>
</v-form>

Other Information

n/a