Let's take a look at the generated code. Since we looked at the server-side code in the previous chapters, we will only look at the client-side code here:
This structure is slightly different from what we saw for Angular and React. We are only concerned about the code inside src/main/webapp/app since everything else is exactly the same as what we saw for the Angular/React application.
Let's take a look at some of the important parts of the code:
- main.ts: This is the entry point of our application. This is where we bootstrap Vue to the root div and initialize the application, along with other dependencies such as Vuex ...