Greg Johnston
Greg Johnston
This is at least a quick fix for issue #37 which is working for my use case.
For the moment, this seems to be work to limit the number of `` rerenders to 2, rather than the linearly or exponentially increasing number of rerenders. I'll work a...
This came up in Primeagen's stream but I couldn't reproduce; I think it may have been because it was in hydrate mode. Something like view! { cx, }
Per @jquesada2016 in https://github.com/gbj/leptos/issues/53#issuecomment-1304910693 it would be a great idea to put together a short guide to make it easier for people to contribute. I'm curious to hear from others...
We can enable use on either stable or nightly Rust by detecting version with the `rustversion` crate instead of using the `stable` flag. This should be fairly simple... only `leptos_reactive`...
There's an [`on_cleanup`](https://docs.rs/leptos/0.0.10/leptos/fn.on_cleanup.html) function that can be used to run arbitrary code before a scope is disposed, e.g., before a row is dropped in a `` component or before a...
I think it should be possible to create a component that's like `` but only falls back the first time, and then (in future situations where it's waiting to resolve)...
We now have a great build tool released that supports things like synchronized client-server live-reloading. It would be great to update (some or all) of the examples, in particular the...
Addresses issue #26.