Elina
Elina
### Bug Report or Feature Request (mark with an `x`) ``` - [x] bug report -> please search issues before submitting - [ ] feature request ``` ### OS and...
### Summary This PR adds [`gloo`](https://github.com/rustwasm/gloo/) under the "Crates You Should Know" section. `gloo` is a very underrated and useful crate and adding it here will hopefully bring more attention...
### Please check if the PR fulfills these requirements - [x] It's the right issue type on the title - [x] When resolving a specific issue, it's referenced in the...
Allow support for the glorious uwu to be run in browser with the epic speeds using [SIMD on WASM](https://github.com/webassembly/simd)
#### Description Fixes #1322 Fixes #2530 Properties are set by using `js_sys::Reflect`. While it doesn't give much benifit today (they're still strings), it opens the door for more opportunities since...
Our documentation has many areas which need improvement. In no particular order, following is a list of (some of) them/their solutions: - [x] Tutorial should be more visible. A button...
Currently, yew.rs is built using [Docusaurus](https://docusaurus.io/), which uses React. It was used because at the time Yew did not have a way to render page to HTML files (SSG). This...
## Background One of the big reasons to use server side rendering is to make the site accessible to crawlers and bots, which often look at the the metadata in...
The official Yew Playground is up at https://play.yew.rs/. We should add it to the documentation. - [`html_playground_url`](https://doc.rust-lang.org/rustdoc/write-documentation/the-doc-attribute.html#html_playground_url) should be set for API docs - Code blocks should we swizzled on...
Nested routers allow users to separate parts of application. ## API I would like to have the following API: ```rust #[derive(Routable)] enum Route { #[at("/")] Home, #[at("/room/:id")] Room } //...