Last active
June 6, 2020 13:53
-
-
Save tslim/94aa018a0423a399880d48b74e03ef8f 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 LiveView | |
<%= live_component @socket, MyApp.UserLive.CustomComponent, id: "custom", foo: "foo", bar: "bar" %> | |
# In custom_component.ex | |
socket.assigns.foo # returns "foo" | |
socket.assigns.bar # returns "bar" | |
# In CustomComponent Template | |
<%= @foo %> | |
<%= @bar %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment