Created
November 5, 2018 17:38
-
-
Save redgeoff/b89f582b08f0f3be83f62661e74ed1ad to your computer and use it in GitHub Desktop.
Autogenerating Forms - onMount
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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