Explore all newline lessons
lesson
Render Functions and JSX30 Days of VueWe took a look at the different types of component templates in yesterday's article. Today, we'll look to use a **render** function to create the markup of a component entirely with JavaScript.
lesson
Vue Devtools30 Days of VueToday’s article is going to introduce the **Vue Devtools** - a browser extension tool built to help debug Vue applications.
lesson
Vue Components - Template Definitions30 Days of VueToday, we'll be taking a look at some of the different ways we can declare the template/markup of a component.
lesson
Introduction to Routing30 Days of VueThe majority of large-scale applications we tend to create will usually have multiple views be kept in different routes. Today, we'll discuss client-side routing and set up the starting point of the routing application we'll build.
lesson
Methods and Computed Properties30 Days of VueToday, we'll take a look at the **computed property** of a Vue instance and see how it differs from using a standard instance **method**.
lesson
The Vue Instance - Data30 Days of VueNow that we know how to instantiate a Vue application with the Vue instance, let's take a deeper look into how the data property of a Vue instance helps enable reactivity.
lesson
Vue 3.0 and the future of Vue30 Days of VueIn today's article, we'll take a brief look at some of the cool features Vue 3.0 is expected to bring when it arrives.
lesson
Custom Events and the EventBus30 Days of VueToday's session will be the first of a series of articles discussing different methods to managing application wide data. We'll begin by reintroducing **props** and **custom events** before taking a look at how a global **EventBus** can facilitate application wide communication.
lesson
Wrap-up and more resources30 Days of VueWe've made it! Day 30. Congrats! Now you have enough information to create Vue applications with the **Vue CLI**, integrate data with **Vuex**, enable client-side routing with **Vue Router**, and even conduct testing with the **Vue Test Utils** library.
lesson
Introduction to Flux30 Days of VueHandling data inside large client-side applications is a complex task. Today we're looking at a one method of handling complex data proposed by Facebook called the **Flux Architecture**.
lesson
What is Vue?30 Days of VueOver the next 30 days, we’re going to walk through everything you need to know to get started with the Vue framework. From the **very beginning** through topics like the **Vue Instance**, **Components**, and even **Testing**.
lesson
The Vue Instance - Data Driven Applications30 Days of VueIn yesterday’s article, we’ve come to understand how data behaves reactively in Vue. Today, we’re going to spend a little more time discussing this behavior since it plays an especially important role in how we build applications in Vue.