Elina
Elina
Clippy errors will be fixed in #2881
Sorry, it took me so long to get back to this. Should be all good to go now
There's a [section on fetching data](https://yew.rs/docs/next/tutorial#fetching-data-using-external-rest-api) in the tutorial. I'm not sure if we need a specific section for it in the documentation. Maybe we can add a "Promises with...
This seems like a lot of magic for removing a macro invocation. The caller has no idea that a VNode has been constructed and passed to the component. Sounds too...
The thing is, I'm not aware of any type being converted to `VNode` implicitly. All the conversions happen between `VNode` or `VNode` is not invoked at all. `Option` -> `VNode`...
I'm also skeptical of adding new features, in addition to allocations and magic. It's easy to add features but hard to remove them, if that's needed. If we were to...
This change sounds good. I'm fine with it as long as all hooks are updated. A way to automatically update the usages would be great too since it is a...
Is it currently not supported? It seems like #1905 added that
Oh, that makes sense. Checking if the function name is `main` and it returns `()` (only type that `spawn_local` supports) and removing the async keyword sounds good to me.
I agree with Alex here. There's no true support for multi threading in WASM, and we should be applying bandaids to fill the hole. As long *a* workaround is available,...