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

It's been almost 2 years since the roadmap has been updated. It needs updates. We need to conduct another survey, just like [this one](https://github.com/yewstack/yew/wiki/Dev-Survey-%5BSpring-2020%5D) and build our roadmap based on...

documentation

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

A-examples
documentation

This is a very impressive framework. I would offer it would be useful to know about the performance of it's use. If there are best strategies or bad practices to...

performance
documentation

**Problem** `html!{ }` panics at compile time with ```rust error: proc macro panicked --> src\main.rs:32:5 | 32 | html!{ } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: message: Punctuated::push_value: cannot push value...

bug
macro
A-yew-macro

**Problem** Intuitively, ` ` should create a fragment when `tag_name` is the empty string. Or at least, when `tag_name` is an empty string literal, the `html!` macro should panic at...

feature-request
A-yew-macro

**Describe the feature you'd like** Allow using for loops like: ```rust html! { for val in range { { val } } } ``` **Is your feature request related to...

feature-request
A-yew-macro

Tracking issue for the point, "Custom events" described in https://github.com/yewstack/yew/issues/1666 **Problem** > Yew should allow users to listen to custom events as well and pass CustomEvent to the callback. >...

feature-request
A-yew-macro

As I recently found out while writing a wrapper for [Material Web Components](https://github.com/material-components/material-components-web-components), consuming web components in yew is far from an ergonomic and pleasant experience. ## Problems I ran...

ergonomics
proposal

@yewstack/maintainers Hi everyone, who maintains the Yew framework. You've all added awesome improvements :rocket: It's an important issue to talk about providing either backward compatibility or easy portability. ### The...

breaking change
proposal

**Problem** I mean to do something when text is selected. I built an example app for this issue, where when text is selected, the selection is displayed under the text....

bug
A-yew
S-waiting-on-author