Elina
Elina
I created #3444 to allow that pattern
@futursolo when you left in Children, was there any reason other than backwards compatibility? If not, we can deprecate that and point everyone to use Html or any of its...
> wouldn't it be possible to split the trait into two? e.g. an `ToHtml` trait with `to_html` that copies/clones and an `IntoHtml` trait with `into_html` that consumes (or ideally just...
I agree with @cecton here. We should do something to mitigate the issues here We need some blanket implementations that are missing. I'm not sure if we can add them...
@paul-ohl, you can go ahead and pick it up, no worries about assigning it
What if you go to `http://127.0.0.1:8080/post/hello` without `.html` suffix? You're not getting a `.html` file, so the extension is not needed
@rmschindler there are two PRs with the same title: #3482 (this one) and #3481. Which one should be reviewed? Can you also please close one the one that's not supposed...
The medium case isn't good because oftentimes the value needs to be cloned after getting it out of the state, forcing T to be Clone when it can be avoided....
Why not recommend setting `value`? `~defaultValue` works because `defaultValue` is a property on `HTMLTextareaElement`. Using `value` is how you should be interacting with the text area anyway. There's no point...
The `value` attribute doesn't work on textarea but Yew has special handling for `value` for both input and textarea that makes it work (it makes `value` and `~value` behave the...