Open
Description
When we want to navigate backwards, removing pages from the stack, it is not possible to do it if it is not done with the Frame.
An example of doing it manually is the following:
const frame = Frame.topmost()
const backStack = frame.backStack
const entry = backStack[0] // your destination here
frame.goBack(entry);
The problem with doing it manually and not through ns-vue is that custom routers lose navigation history