Demo
Mix.install([
{:phoenix_playground, "~> 0.1.8"}
])
Section
defmodule DemoLive do
use Phoenix.LiveView
def mount(_params, _session, socket) do
{:ok, assign(socket, count: 0)}
end
def render(assigns) do
~H"""
{@count}
+
body { padding: 1em; }
span { font-family: monospace; }
"""
end
def handle_event("inc", _params, socket) do
{:noreply, assign(socket, count: socket.assigns.count + 1)}
end
end
PhoenixPlayground.start(live: DemoLive)