Elina

Results 255 comments of Elina

> > Related? #1322 > > i dont whink so Going by your fix of calling set_value, I'd say it is related

> I didn't mean make a separate repo. But maybe a website-beta folder in this repo so that it can be developed concurrently I don't mind developing it on the...

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

One way to provide this implementation is similar to how global allocator works: ```rust // pseudocode~ish #[yew::serializor] static SERIALIZOR: Serializor = Serializor::INIT; ``` I'm not entirely sure if that's possible...

I saw a comment on reddit by (I think) @DenisKolodin explaining how Yew was named but I can't find it. Maybe @DenisKolodin can explain the meaning, origin, and pronunciation of...

I agree. We should add this somewhere on the website. @voidpumpkin any suggestions on where it should go, since you re-did many of the docs

One way to do this would be to store the previous props in your component struct and compare it with the new props in `changed` method. If I recall correctly,...

How did this experiment go, in your opinion? It looks fine to me, from the binary size changes. I tried replacing `Box` for fields in `Scheduler` with their concrete types...

Related: #2322

I think the lifetime should be from component being rendered to component being destroyed (re-render would call the hooks again.) I'm not sure if that is possible though.