Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Vue Masterclass (Covers Vue 2 and 3)
Rating: 4.6 out of 5(1,079 ratings)
7,064 students

Vue Masterclass (Covers Vue 2 and 3)

Learn VueJS and build a complete real-world project using Vue, Pinia, TypeScript, TailwindCSS, Vitest, and more.
Created byBoris Paskhaver
Last updated 1/2026
English

What you'll learn

  • Build a complete, real-world Vue application using Vue, Pinia, Vue Router, and more
  • Master modern front end technologies like TailwindCSS, TypeScript, and Prettier
  • Use Vitest and Vue Testing Libary to write unit tests for all elements of the Vue ecosystem
  • Learn best practices for Vue component design
  • Covers both Vue 2's Options API and Vue 3's Composition API

Course content

37 sections499 lectures42h 49m total length
  • Course Overview8:52

    Welcome to Vue Masterclass! In this lesson, we introduce the Vue.js library and the problems it helps us to solve. We also walk through the technical prerequisites (HTML, CSS, JavaScript, Terminal), the concepts we'll learn throughout the lessons, and the benefits of taking the course.

  • Introducing our Project (Careers Site)6:49

    In this course, we'll be building out a job search app strongly inspired by the Google Careers website. This is a real-world Vue project that Google developers had to build. We'll discover that there's a lot of hidden complexity hiding in this application; it offers us a perfect opportunity to learn all about Vue.

  • BONUS: Vue 2 vs. Vue 34:48

    In this lesson, we'll explain the differences between versions 2 and 3 of Vue. Version 3 introduces the Composition API, a new way to build components. The Composition API is complementary to the existing Options API that Vue 2 uses. We will be learning both APIs throughout the course.

  • BONUS: Vue vs. React vs. Angular9:07

    In this lesson, we'll learn the differences between the Vue, React, and Angular front-end libraries/frameworks. Vue exists midway between the unopinionated React library and the opinionated Angular framework. Vue only cares about the view layer but its core team develops supplemental libraries to assist with other problems in front-end development.

  • Technical Requirements0:37

    In this lesson, you'll discover through the technical tools you'll need to install to proceed through the course.

  • Install Google Chrome1:07

    In this lesson, we download the Google Chrome web browser that we'll be using to view our Vue application

  • Install Git1:00

    In this lesson, we download Git for source control. You can use Git to make commits during your project development. I recommended adding a commit at the end of every lesson.

  • Node Setup for macOS Users0:34

    If you're a macOS user, you'll need to install some Xcode development tools before you can install Node on your computer. This lesson shows you how to install these software prerequisites.

  • Install Node1:27

    In this lesson, we'll walk through the installation of the Node runtime environment for your computer. Node and NPM are required to work with VueJS.

  • Install VSCode0:51

    In this lesson, we'll setup the free VSCode (Visual Studio Code) text editor. We'll be using it to write our code throughout the course.

  • Install VSCode Extensions1:06

    In this lesson, we install 3 helpful extensions for working with our project: Vetur, ESLint, and Prettier.

  • Asking Good Questions1:03

    In this lesson, we deliver some insights for how to ask good questions in the Q&A section.

Requirements

  • HTML
  • CSS
  • JavaScript (ES6 features)
  • Terminal

Description

Welcome to the most comprehensive Vue course on Udemy!

The Vue Masterclass introduces you to the powerful VueJS library for building dynamic, reactive front end interfaces.

VueJS has taken the web development community by storm and is a fantastic technology to learn in 2023:

  • Vue has been used to built over 1,000,000 websites

  • Vue has over 200,000 stars on GitHub

  • Vue downloads on NPM have doubled year-over-year

  • Vue is used by leading tech companies like Netflix, Apple, GitLab, and Nintendo.

The best way to learn a technology is to create something with it. That's why the Vue Masterclass consists of a complete real-world project that we'll build together from scratch. I'll be coding alongside you from the very first line of code.

I believe this course is the closest I've come to capturing what it feels like to be a Vue developer on the job. We'll introduce and complete user stories, discuss tradeoffs of different technical approaches, summarize what we've learned at the end of each section, and more.

No prior experience with Vue (or any other front end library) is needed. Beginners are welcome!

The course starts with Vue basics and progresses to advanced Vue concepts including:

  • Creating Vue components

  • Styling Vue components

  • Using Vue directives to compose dynamic interfaces

  • Passing props between components

  • Emitting events

  • Routing our user from page to page

  • Testing Vue components

  • and more!

Throughout 50+ hours of video content, we'll cover numerous aspects of the Vue ecosystem including:

  • Vue (including both the Options API from Vue 2 and the new Composition API in Vue 3)

  • Pinia for global state management

  • Vue Router for navigating the user across pages in our application

  • Testing with Vue Testing Library and Vitest

  • Scaffolding Vue applications with Create Vue

  • Styling components with Tailwind CSS

  • Adding type checking with TypeScript

  • Linting our code with ESLint

  • Formatting our code with Prettier

  • and more!

Another aspect that makes the course special is its emphasis on testing. We'll discuss how to unit test our Vue applications using the Vitest and Vue Testing Library packages. We'll also walk through various testing methodologies, including test-driven development (TDD).

Vue Masterclass offers you an incredible, comprehensive introduction to the powerful Vue library. I'm super excited to build this project together with you and I can't wait to see you in the course!

Who this course is for:

  • Frontend developers eager to learn a modern library for building reactive interfaces
  • React/Angular developers curious to try an alternative view library
  • Students who learn best by doing rather than watching