yew icon indicating copy to clipboard operation
yew copied to clipboard

Rust / Wasm framework for creating reliable and efficient web applications

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

#### Description Closes #3213 This adds a migration link in the changelogs #### Checklist - [x] I have reviewed my own code - [x] I have added tests

**Problem** I am unable to use the `yew::tests` module in my tests. Sorry if I'm being stupid, but I think it's because the `cfg(test)` does not get passed on to...

bug

**Problem** **Steps To Reproduce** Steps to reproduce the behavior: ```rust #[test] fn test_to_html_to_children_comp_compiles() { use crate::prelude::*; struct Foo; impl ToHtml for Foo { fn to_html(&self) -> Html { html!() }...

bug

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

documentation

While it is possible to assign `&str` and `String` to a property of type `Html`, that fails for `Option`. I think this should be possible too. **Yew:** 0.21

bug

#### Description Correct add yew dependency to Cargo.toml

#### Description This PR adds: - `UseStateHandle::get` & `UseReducerHandle::get` that return the contained value of the handle in the form in which it's stored internally: in an Rc; These 2...

#### Description * Correct auto-generated links `https://examples.yew.rs/`

Fixed outdated note in getting started guide #### Description According to the getting started guide, yew::Renderer::::with_props(..).render() is they way to mount your component, to an element that is not ....

#### Description Just add a missing 'l' to the closing HelloWorld tag in the function components documentation (introduction.mdx) #### Checklist - [x] I have reviewed my own code - [...