WorldSEnder b90c99af0c
Partially undo #2673, different approach for the DerefMut impl of VList (#2692)
* partially undo #2673

VList again has a DerefMut implementation
the internal fully_keyed state now has an "indeterminate" variant
instead of being a bool, this recomputes it during reconciliation

* add Copy impl to FullyKeyedState
2022-05-24 23:05:37 +02:00
..
2022-04-11 17:02:59 +05:00

Futures Example

Demo

Fetches Yew's README file and renders it to the page.

Concepts

This example shows off how to make asynchronous fetch requests using web-sys and Yew's futures support. It makes use of yewtil's LinkFuture to easily send messages asynchronously. It also contains a Markdown renderer which manually creates Html without using the html! macro.

Improvements

  • Markdown rendering code should be cleaned up.
  • Should make use of CSS to style the output.
  • This example could use a better name.
  • Since this features a Markdown renderer it should be possible to render more than just one document.