Single-Page Applications
In this chapter, we continue to increase our skills in Vue 3 with the introduction of single-page applications (SPAs). We will learn what distinguishes them from regular websites and will dive into their key characteristics. To put this into action, we will build a new version of our To-Do application using the Vue Router and a different pattern of communication than the previous chapters. We will also learn authentication methods with code samples.
By the end of this chapter, you will know the following:
- How to create SPAs with Vue 3
- How to organize your application to make use of the Vue Router with different routing strategies
- How to reimplement our To-Do application with a practical application of different patterns
- How to implement different patterns of authentication in your SPA
While the previous chapter was somewhat heavy with foundational knowledge, from now onward, we center more on practical matters. Because of this...