yew/examples/two_apps/README.md
Simon 66d506e133
Update documentation for the new examples (#1586)
* fix todomvc example

* update READMEs now that we're hosting the examples

* update documentation

* add trunk template

* Improve wording
2020-09-23 03:47:28 +02:00

703 B

Two Apps Example

Demo

This example runs two Yew apps which communicate with each other.

Concepts

The example illustrates how one can take control of the mounting process which is usually done by yew::start_app.

Improvements

Instead of using the same component type twice, the example could use two entirely different components that communicate with each other. One of the components could even accept a generic "remote" component using a trait.

This example is very similar to mount_point. The two should be merged into a single example.