From the course: Vue.js 3 Essential Training

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Application API

Application API

- [Instructor] - So far we built projects using what's called the global API. So let's explore the other way to create projects, the application API. Now, the application API was designed to build applications. So it's really not made to build single pages or part of a website, but entire website or applications. Now, if you enjoyed how we worked with components in the previous chapter, you'll be happy to know that everything in the application API is centered around components. Now, because of the more complex nature of this, you can't just add this to an existing project using a script tag. It requires a build process, which is managed by a platform called Node.js and that means that there's going to be some prerequisites that you need to know and be comfortable with before working with the rest of this course. First, you'll need to make sure that you have node.js installed and are familiar using the Node Package…

Contents