The Foundation of Vue.js
If you are reading this book, chances are that you have decided to use Vue.js as your framework of choice and there is very little reason to try to convince you not to use it. We are going to use this chapter to begin sharing details of what makes Vue.js unique and why it has become so successful.
We are first going to learn what makes Vue.js different from other frameworks; we will then move on to study Vue.js’ reactivity and its lifecycles. Finally, we will learn about the component structure of Vue.js.
In this chapter, we will learn the following:
- Vue.js’ reactivity fundamentals
- Understanding the Vue.js lifecycle and hooks
- Vue.js’ component structure
The goal of this chapter is to provide you with information regarding Vue.js that will become the foundation of your future learning. Understanding Vue.js’ reactivity will help differentiate Vue.js from other frontend frameworks and libraries, and you...