I’m trying to really grasp how the Ember routing works: Reading this article (yes, I know it is outdated, but I think it still provides value due to its depth)
If a url of /vault/new/step1 is requested, all three of these routes will be composed together and all 3 states or routes will be executed in sequence. Each connectOutlets method on each state or route will be executed, giving you a chance to change what is displayed on the page as the url changes and the application state changes.
So my question: Does this pattern still apply for the new routing mechanism? I haven’t seen any good description of the current router, as to exactly which methods are executed in which order on which class instances for a nested resource-route. If the above is still the case, in answers many of my concerns Thanks!