Something that we haven't touched on yet is what the entry point to our Vue application is. We have seen the Home.vue page, but that is just a component that gets rendered somewhere else. We need to take a step back and see how our Vue application actually handles loading itself and showing the relevant components. While we are doing this, we will also touch on routing in Vue so that we can see how that all hangs together.
Our starting point is found inside the public folder. In there, we have an index.html file, which we can think of as being the master template for our application. It's a fairly standard HTML file—we might want to give it a more suitable title (here, we're going with Advanced TypeScript - ...