Vue Data
Learn how to work with dynamic data using the Vue.js framework.
StartVue Data
Lesson 1 of 1
- 1Welcome to Vue Data! In Introduction to Vue , we briefly covered some of the most exciting features of Vue. In this lesson, we will start by reviewing how to create Vue apps and display dynamic da…
- 2Now that we have the Vue library available to use, we need to create our Vue app. All Vue apps are instances of the Vue class provided by the imported Vue library. As with all classes, we must use …
- 3The first property you will usually need to add to your Vue app’s options object is el. The el property corresponds to the HTML element that should be turned into a Vue app. The value of this k…
- 5We can use the values in the data object with the mustache templating syntax to display information in our HTML. Doing this requires named data to be stored in the data object, but some data can be…
- 6Being able to generate computed properties based on data is super useful. But why limit ourselves by only allowing this data flow to only go one way? Vue allows us to not only determine computed …
- 8Throughout this lesson, we have covered many options object properties that allow us to store and generate dynamic values to use in our template. But where do we store any methods we need to make o…
How you'll master it
Stress-test your knowledge with quizzes that help commit syntax to memory