You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.$navigator.navigate('/article', {
props: {
articleId: id,
},
frame: 'frame-1', // without this, it navigates in frame-2
});
I expected it to know which frame it was held within and navigate accordingly.
Not the end of the world, just means I have to manually specify the frame, which may not be ideal, as there might be several paths to the same page in each tab.
The text was updated successfully, but these errors were encountered:
Navigator itself is a Frame - there is no need for the frames and pages inside the tab contents. Your issues are likely related to navigating on the wrong frames. And if you have multiple of them, you have to give them an id, and pass that id to navigation options - as otherwise there's no easy way to predict which frame to navigate.
/feed route
I expected it to know which frame it was held within and navigate accordingly.
Not the end of the world, just means I have to manually specify the frame, which may not be ideal, as there might be several paths to the same page in each tab.
The text was updated successfully, but these errors were encountered: