vue-router goes directly to the child route, and the parent route has not yet been loaded, resulting in whiteboard
A routing structure like this:
https://codepen.io/anon/pen/E...
when you click / page1, and then click "new win", you will find that the page is not loaded.
the preliminary judgment is due to the timing of the dynamic route loading, but the dynamic route can not be loaded until the route has been initialized, and some pages can only be loaded.
the current practice is to force location.replace ("/ main") to access the parent route first, and then delay location.replace ("/ page1") to access the child route. I wonder if there is any good way to solve it.