diff --git a/docs/guides/forms.md b/docs/guides/forms.md index 4f1e912da..aed5d373c 100644 --- a/docs/guides/forms.md +++ b/docs/guides/forms.md @@ -46,6 +46,50 @@ export class MyName { Let's go over what is happening here. First we bind the value of the input to a state variable, in this case `this.value`. We then set our state variable to the new value of the input with the `handleChange` method we have bound to `onInput`. `onInput` will fire every keystroke that the user types into the input. +## Using form-associated custom elements + +In addition to using a `