Lessons

Explore all newline lessons

Tags
Author
Pricing
Sort By
Video
Most Recent
Most Popular
Highest Rated
Reset
Render Functions and JSX

lesson

Render Functions and JSX30 Days of Vue

We 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.

Vue Devtools

lesson

Vue Devtools30 Days of Vue

Today’s article is going to introduce the **Vue Devtools** - a browser extension tool built to help debug Vue applications.

Vue Components - Template Definitions

lesson

Vue Components - Template Definitions30 Days of Vue

Today, we'll be taking a look at some of the different ways we can declare the template/markup of a component.

Introduction to Routing

lesson

Introduction to Routing30 Days of Vue

The 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.

Methods and Computed Properties

lesson

Methods and Computed Properties30 Days of Vue

Today, we'll take a look at the **computed property** of a Vue instance and see how it differs from using a standard instance **method**.

The Vue Instance - Data

lesson

The Vue Instance - Data30 Days of Vue

Now 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.

Vue 3.0 and the future of Vue

lesson

Vue 3.0 and the future of Vue30 Days of Vue

In 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.

Custom Events and the EventBus

lesson

Custom Events and the EventBus30 Days of Vue

Today'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.

Wrap-up and more resources

lesson

Wrap-up and more resources30 Days of Vue

We'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.

Introduction to Flux

lesson

Introduction to Flux30 Days of Vue

Handling 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**.

What is Vue?

lesson

What is Vue?30 Days of Vue

Over 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**.

The Vue Instance - Data Driven Applications

lesson

The Vue Instance - Data Driven Applications30 Days of Vue

In 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.