Technical requirements
From this point onward, all chapters will require you to check out a specific version of the code from our repository. We installed our repository back in Chapter 1, when we downloaded the application and ran it for the first time.
Using that same repository, which is available at https://github.com/PacktPublishing/Vue.js-3-for-Beginners, we can jump between chapters using the various branches. Having one individual branch per chapter ensures that our starting point matches, preventing possible code issues or missing parts that would make the learning complicated.
In this chapter, the branch is called CH03. To pull this branch, run the following command or use the GUI of choice to support you in this operation:
git switch CH03.
Do not forget that to run the application after switching the branch, you have to ensure all dependencies are installed and run the dev server. This can be achieved with the following two commands:
npm install npm run dev...