Bootstrapping your first Vue.js project using Vue CLI
Required prerequisite knowledge
For this guide, you will need to have a good understanding of Javascript. You will also need to have had some experience using a Javascript framework as we’ll be making use of automated build tools. The Vue.js documentation also recommends against beginners starting out with Vue CLI. I will be releasing a more beginner friendly tutorial shortly but this is expected to be a practical guide for more experienced developers.
Introduction
If you don’t already know, Vue.js is a progressive Javascript framework quite similar to the likes of Angular and React. It is used on the front-end to handle user events, present dynamic DOM content and it provides an easy way to architect apps that are modular and performant as required by the apps of today. In this guide, I will be taking you through the process of bootstrapping your very first Vue.js project quite...