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 Yew currently provides two versions of the reducer hook: * `use_reducer`: This hook always causes a re-render when an action is dispatched. * `use_reducer_eq`: This hook avoids the...

#### Description This fixes a bunch of typos found by the [typos](https://github.com/crate-ci/typos) tool. Would it make sense to add it to the CI in a future PR, to prevent further...

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. Release notes Sourced from actions/upload-artifact's releases. v5.0.0 What's Changed BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but...

dependencies
github_actions

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. Release notes Sourced from actions/download-artifact's releases. v6.0.0 What's Changed BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but...

dependencies
github_actions

Bumps and [brace-expansion](https://github.com/juliangruber/brace-expansion). These dependencies needed to be updated together. Updates `brace-expansion` from 1.1.11 to 1.1.12 Release notes Sourced from brace-expansion's releases. v1.1.12 pkg: publish on tag 1.x c460dbd fmt...

dependencies
javascript

#### Description Add a way to split the wasm bundle in multiple components. This modifies the build process, and uses relocation information emitted by llvm to identify where to "split"....

#### Description **Problem:** When `yew-macro` is sourced from a remote (crates.io or github), `rust-analyzer` "control-click" resolution of code inside `#[function_component]` definitions fails to resolve; instead, it resolves to the top...

**Problem** When hovering and ctrl-clicking a component inside of an html!() macro it doesn't pull up the definition of the component, instead it gives a laundry list of uses which...

bug

I am getting started with Yew. I wondered what you use as your solution for CSS. Searching I found [this page](https://yew.rs/docs/more/css) in your docs. Nice! But then I started following...

documentation

#### Description Current master branch renders a white screen (at least on Chrome) because it converts svg element names to lower case: ```rs #[function_component] pub fn App() -> Html {...