Created
June 6, 2020 09:47
-
-
Save tslim/d72cbb2bd3ba178579e7985d4e001e01 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# in live_component.html.leex | |
<%= f = form_for @changeset, "#", | |
id: "form", | |
phx_target: @myself, # Don't forget this | |
phx_change: "validate", | |
phx_submit: "save" %> | |
# Link to send delete event to the live component | |
<%= link "Delete User", to: "#", phx_click: "delete", phx_target: @myself, phx_disable_with: "Deleting..." %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment