Julius Lungys
Julius Lungys
**Problem** ```rust use yew::prelude::*; #[function_component] fn App() -> Html { let selection_handle = use_state(|| 2_usize); html! { { "Option 1" } { "Option 2" } { "Option 3" } {...
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
Given i have ran my website using trunk serve. When i edit my code to have a compiler error Then my cli shows the error but my website is still...
I usually have 2 websites being served at the same time. But since they both use the same port when i edit only one of them. Both get reloaded.
Link to migration guides at the top of changelog
Make `Key` avoid an allocation, make it faster to compare than Strings. Original discussion: #2804