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 issue outlines a proposal to add a set of hooks that can be used to carry states / artifacts created during the server-side rendering to the client side for...

feature-request
A-yew-router
A-yew

Nested routers allow users to separate parts of application. ## API I would like to have the following API: ```rust #[derive(Routable)] enum Route { #[at("/")] Home, #[at("/room/:id")] Room } //...

feature-request
ergonomics
proposal
A-yew-router

#### Description Introduces a `TestRunner` that can mounts components, wait until they are done rendering, offers an API to test some properties about them and avoids mistakenly rendering over other...

**Problem** (This is a code quality/refactoring suggestion. I think we need a template for that?) Currently, the shadowing is repeated in each `...-pass.rs` file, that's a lot of duplication and...

A-ci

Yew has some lints https://yew.rs/docs/concepts/html/introduction#lints They were introduced in #1748 as part of #1334 But they have no way to opt-out https://github.com/yewstack/yew/pull/1748#issuecomment-999778688

feature-request
ergonomics
A-yew-macro

#### Description Get rid of the generic parameter to `CreateRunner`, to unify with the other scheduler runnables, and to target a suggestion in #2485. I want to see if this...

#### Description minor optimizations during code review. #### Checklist - [ ] I have run `cargo make pr-flow` - [ ] I have reviewed my own code - [ ]...

A-yew

**Problem** The feature soundness lints are useful but clippy is not very helpful when determining the correct visibilities and features. At least sometimes I don't understand immediately why clippy is...

ergonomics
A-ci

#### Description Changes Key to wrap an `Rc` instead of an `Rc`. Which allows `Key` to among other things implement `From`. This in turn allows it to more efficiently wrap...

breaking change
A-yew

I've been thinking about the docs, tone, and branding of Yew. This issue is for my suggestion for a new slogan! ## Slogan **Focus more on the user than the...

documentation
meta