I am getting a typescript error when trying to reset a form when the user clicks on reset button.
onClearSearchFormClicked() {
this.$refs.searchForm.reset();
}
197:27 Property 'reset' does not exist on type 'Element | Element[] | Vue | Vue[]'.
Property 'reset' does not exist on type 'Element'.
196 | onClearSearchFormClicked() {
> 197 | this.$refs.searchForm.reset();
| ^
198 | }
Version: typescript 3.8.3