yew
yew copied to clipboard
Rust / Wasm framework for creating reliable and efficient web applications
This is about: - [ ] A typo - [ ] Innaccurate/misleading documentation (e.g. technically incorrect advice) - [ ] Undocumented code - [ ] Outdated documentation - [x] Other...
#### Question I'm building a generic admin panel, I'm struggling implementing an authentication system that can work with the router component. In short it works by sending the browser a...
Our website's home page is just a wall of text. Compare https://yew.rs/ with - https://sycamore-rs.netlify.app/ - https://dioxuslabs.com/ - https://seed-rs.org/ - https://arctic-hen7.github.io/perseus/en-US/ Although the documentation is comparable (or maybe even, visually...
Our GitLocalize project needs an update Docusaurus now places localization under the `website/i18n/` folders instead of `website/translated_docs/` folders. The files suffixes have changed from `md` to `mdx`. And `.json` files...
Since 0.19.0 through 0.19.2 are yanked, the docs should reflect this. #2312
**Problem** The `CHANGELOG.md` file lacks information about breaking changes in the new 0.19 release. **Details about the solution you'd like** In the changelog file: Mention that the breaking changes aren't...
**Describe the feature you'd like** The `html!` macro should output warnings. The developer should be able to ignore these warnings as they see fit. These warnings should integrate into the...
**Describe the feature you'd like** Surveys to ask people how ergonomic/easy to use they find different APIs and how they can be improved. **Is your feature request related to a...
Not sure how formal the support for this feature should be, but at the moment is possible using the approach in the nested list example here: https://github.com/yewstack/yew/blob/master/examples/nested_list/src/app.rs So I think...
This is about: - Other (Important Tips) Component communication might deserve a dedicated page. # Ancestor -> Descendant straightforward: passing props. Using a context if the descendants can be too...