yew icon indicating copy to clipboard operation
yew copied to clipboard

Rust / Wasm framework for creating reliable and efficient web applications

Results 251 yew issues
Sort by recently updated
recently updated
newest added

#### 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...

breaking change
A-yew

**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...

bug

**Problem** ```rust use yew::prelude::*; #[function_component] fn App() -> Html { let selection_handle = use_state(|| 2_usize); html! { { "Option 1" } { "Option 2" } { "Option 3" } {...

bug
A-yew

**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...

feature-request
A-yew
feature-accepted

#### 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....

A-yew

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...

A-yew

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...

documentation

**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...

feature-request
ergonomics
macro
A-yew-macro

This is about: - [ ] A typo - [ ] Innaccurate/misleading documentation (e.g. technically incorrect advice) - [x] Undocumented code - [ ] Outdated documentation - [ ] Other...

documentation

#### 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...

breaking change
A-yew