Vue.js 2 Components Fundamentals
🚧 PLEASE NOTE: An updated version of this course is available! see the Vue.js 3 Components Fundamentals With the Options API course. This course is outdated!

Global vs Local Components

Vue.js allows us to register components both globally and locally. In this lesson, we'll learn the difference between the two types and how it can affect the build size and performance of your application.

Important Note

Since Vue.js 3 became the default you must now specify version 2 when getting Vue from a CDN.

<script src="https://unpkg.com/vue@2"></script>