Skip to content

Instantly share code, notes, and snippets.

@tslim
Last active June 6, 2020 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tslim/94aa018a0423a399880d48b74e03ef8f to your computer and use it in GitHub Desktop.
Save tslim/94aa018a0423a399880d48b74e03ef8f to your computer and use it in GitHub Desktop.
# 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