Skip to content

Instantly share code, notes, and snippets.

@redgeoff
Created November 5, 2018 17:38
Show Gist options
  • Save redgeoff/b89f582b08f0f3be83f62661e74ed1ad to your computer and use it in GitHub Desktop.
Save redgeoff/b89f582b08f0f3be83f62661e74ed1ad to your computer and use it in GitHub Desktop.
Autogenerating Forms - onMount
onMount={({ component }) => {
// Load any initial data, e.g. from an API
component.setValues({
id: "abc123",
firstName: "Bob",
lastName: "Marley",
email: "[email protected]"
});
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment