yew
yew copied to clipboard
Rust / Wasm framework for creating reliable and efficient web applications
`yew::platform` is a pseudo-runtime that - at the moment - uses [tokio](https://docs.rs/tokio) or [wasm_bindgen_futures](https://rustwasm.github.io/wasm-bindgen/api/wasm_bindgen_futures/index.html) based on the feature flags configured. Since the introduction of #2811, it also contains features that...
Sync with line 358 #### Description Fix the code listing so it will be synced with later listings. #### Checklist - [ v] I have reviewed my own code -...
This is about: - [ ] A typo - [ ] Innaccurate/misleading documentation (e.g. technically incorrect advice) - [ ] Undocumented code - [ ] Outdated documentation - [x] Other...
**Problem** When the "page not found" happens in the inner nested router, the outer "page not found" route is not taken. Instead, It shows only the default blank page **Steps...
**Problem** The nested routers are failing to match URLs with specific patterns. `*` did not catch the empty string. **Steps To Reproduce** 1. Implement the code: ```rust use yew::prelude::*; use...
**Describe the feature you'd like** Code coverage reporting (percentage of lines of code which are run during Yew's tests). **Is your feature request related to a problem? Please describe.** _(Optional)_...
We should have an example project, probably in the form of a starter template that shows how to build a PWA (https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps). In doing so, we should determine if Yew...
My app's main bottleneck is the cloning and comparing of props (of one specific component that is instantiated 4 times) that are huge structs and don't change frame to frame....
According to #83 we need a capability to embed third-party components which lives in own lifecycle, like [Ace](https://ace.c9.io/).
Is it possible to embed other wasm applications (e.g. games like [this](https://github.com/planet0104/spaceout)) within a yew app (without iframe) so that they render into a designated sub dom node?