If you have multiple weavy apps on the same page, navigation between these two apps is handled automatically. Let's say for instance that you have a notification app with a notification that links to another app on the same page, this link will be automatically opened in the other app.
You may use the weavy.navigation.open(route)
function at any time to try to open a url or a route in the app it belongs to.
The function accepts both a string url or a route object like the one in the navigate
event. It returns a promise which resolves if the correct app is present and fails if the app is missing.
Tip: If you know the space and app, you may also open the url directly by using weavy.space("spacekey").app("appkey").open(url);