Create Custom API Endpoints in Nuxt

Did you know you can create custom API endpoints in Nuxt.js? That means you do not have to spin a standalone server. Instead, you can do it straight in your Nuxt application! In this article, you will see how to do it. You will create a simple Express server…

Hygraph + Nuxt.js - Vote Your Favourite Tech Courses

Note: GraphCMS changed to Hygraph. In this tutorial, you are going to build a voting application for tech courses. The voting application allows people to vote courses from tech so people can find quality courses. If you like a course and think it's a quality course, you can…

6 Resources To Learn Vue.js As A Beginner

In this article, I want to show you the six resources I used to learn Vue.js as a complete beginner. Some of the resources are free, whereas some are paid. 1. Vue Mastery Vue Mastery is an online learning platform that produces weekly lessons about Vue, and it has…

Get Started With Vue CLI and UI

In this article, you will learn about the Vue Command Line Interface. Vue CLI allows you to create pre-configured Vue projects. Also, if you prefer graphical user interfaces, you can use the Vue GUI to create and configure your projects. Prerequisites Before following the tutorial, you should have basic knowledge…

Attribute Binding In Vue JS

In this article, you will learn about the concept of attribute binding. That is, you will learn how to use dynamic values rather than hardcoded values for attributes. Attribute binding First of all, you need to create a Vue instance and add three properties: * a product name * an image URL…

Vue JS CDN Link - How To Use Vue Without Installing It

There are a few scenarios where you might want to use Vue without installing it. Some examples of such scenarios are: * learning Vue * quickly prototyping an application ... and so on. As a result, you can include the Vue JS CDN link in your project rather than installing it. Vue CDN…