You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If using ref on an element in a template and expecting to reference it with this.$ref one needs to change it to the proper element type or to any in order to access properties of the referred element (this.$refs.checkboxElement as HTMLFormElement).checked. The error error TS2339: Property 'checked' does not exist on type 'Vue | Element | Vue[] | Element[]' will be encountered otherwise.