Julius Lungys

Results 33 comments of Julius Lungys

I am running into a problem related to this issue also. Im using `cargo-watch` and having trouble running things. # Examples Cargo.toml ```toml [package.metadata.commands] build = "wasm-pack build --target web...

After going through #2369 I really feel inheritance for props should not be considered for yew for now. Maybe in coming years rust will get more features that allow to...

@Follpvosten I see, sorry it seems I'm mixing up issues.

On MDN it says `selected` is only used for first load. Its possible we need to introduce custom yew attribute for select so we could pass `value` I believe react...

For now this bug can be worked around: ```rust use web_sys::HtmlSelectElement; use yew::prelude::*; #[function_component] fn App() -> Html { let selection_handle = use_state(|| 2_usize); let select_node_ref = use_node_ref(); { let...

> I really like this initiative. Is Yew sticking with Docusaurus? Perhaps a new landing page can be developed concurrently with #2378. For example, reactjs.org has a beta directory for...

Changelog is being generated automatically and i would prefer to keep it that way. I do not know what solutions there are to automatically filter out braking changes

> > I do not know what solutions there are to automatically filter out braking changes > > There is a label for breaking changes We should make sure to...

@hamza1311 I like this as this just patches up the nested router hack https://yew.rs/docs/concepts/router#nested-router It will be easy to update for people that already were using it. Though i wish...