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

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

documentation

**Steps To Reproduce** run this code: ```rust #[allow(unused_imports)] use log::{debug, error, info, trace, warn}; use yew::prelude::*; #[function_component(PageWithTable)] pub fn page_with_table() -> Html { let paginator = html!( {">>"} ); html!(...

bug

**Problem** I am trying to conditionally render some HTML that goes through a Children component. When using `enumerate()` on the Children iterator, should-be-skipped components are rendered anyways. **Steps To Reproduce**...

bug

**Problem** `textarea` s are allowed to have children (see [MDN example](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea#basic_example)). They are not rendered by Yew. **Steps To Reproduce** ```html html! { {"This is the default value"} } ```...

bug
A-yew

Make `Key` avoid an allocation, make it faster to compare than Strings. Original discussion: #2804

Working with plain good ol' CSS without any frameworks is blazingly fast, like a 3-sec max compilation. However, things change dramatically when adding a CSS framework. For example, with Tailwind,...

bug

## Problem `yew-macro` crate currently contains the parser and implementation of `html!` and other macros. It is a `proc-macro` crate which means it can't be added as a dependency (or...

A-yew-macro

Bumps the cargo-deps group with 48 updates in the / directory: | Package | From | To | | --- | --- | --- | | [gloo](https://github.com/rustwasm/gloo) | `0.10.0` |...

dependencies
rust

#### Description Slight code simplification: here `latest_id` is never used as mutable, so might as well make it non-mutable by using `use_memo_base` #### Checklist - [x] I have reviewed my...

**Problem** I keep getting this error when I try to update a package like serde_yaml or replace serde_yaml with serde_yml line 216. ``` the trait bound `implicit_clone::unsync::IMap: From` is not...

bug