yew
yew copied to clipboard
Rust / Wasm framework for creating reliable and efficient web applications
#### 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...
**Problem** This is a very minor thing, but many people may search for `yew_router` and be sent to the old archived Github project. That project links to this repository, but...
**Problem** ```rust use yew::prelude::*; #[function_component] fn App() -> Html { let selection_handle = use_state(|| 2_usize); html! { { "Option 1" } { "Option 2" } { "Option 3" } {...
**Describe the feature you'd like** ```rust html! { } ``` sets an **attribute** `foo` with the result value of `expr` There are some attributes (`type`, `checked`, and `value`) which are...
#### Description This pull request: - Replaces most inner channels from tokio to a custom implementation that is `!Send`. - Removes tokio as a dependency unless feature tokio is selected....
Yew 0.20 will focus on making Yew applications SEO friendly and pre-rendering the page with server-side rendering (SSR). We're also ironing out our function component support, with hooks that should...
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...
**Problem** ``` error: the property value must be either a literal or enclosed in braces. Consider adding braces around your expression. --> src/components/slider.3.example:13:25 | 13 | | ^^^^^^^ ``` Using...
This is about: - [ ] A typo - [ ] Innaccurate/misleading documentation (e.g. technically incorrect advice) - [x] Undocumented code - [ ] Outdated documentation - [ ] Other...
#### Description 1. Adds `Runtime` and `LocalRuntime` to make the runtime configurable. 2. `yew::platform::time` for timer support. (#2784) 3. Adds SSR Benchmark (Benchmark will only work if master has benchmark...