Making Our HTML Dynamic
The theoretical chapters have now come to an end. It is time to start building our Companion App and learn about Vue.js. As we build our application, one step at a time, we will also learn about Vue.js. The idea of this approach of learning by doing is most effective when you follow along and build the application alongside me.
To help you grasp complicated topics and ensure that you have learned the basics of Vue.js, you will also be asked to complete some extra tasks that can either be applied to the Companion App or used as a standalone project.
In this chapter, we’ll cover the following topics:
- Building your first Vue project
- Creating our first components
- Introducing properties
- Learning about Vue.js reactive data with Refs and Reactive
The goal of this chapter is to introduce you to the basics of Vue.js. You will learn how to create a project from scratch to understand how a Vue component is structured. At the end...