
Learning Vue.js 2
By :

In this section, we will analyze all the possible ways of installing Vue.js. We will also create a skeleton for our applications that we will develop and enhance through the next chapters. We will also learn the ways of debugging and testing our applications.
There are a number of ways to install Vue.js. Starting from classic, including the downloaded script into HTML within the <script>
tags, using tools like bower, npm, or Vue's command-line interface (vue-cli
), to bootstrap the whole application.
Let's have a look at all these methods and choose our favorite. In all these examples, we will just show a header on a page saying Learning Vue.js
.
Download the vue.js
file. There are two versions, minified and developer version. The development version is at
https://vuejs.org/js/vue.js
. The minified version is at
https://vuejs.org/js/vue.min.js
.
If you are developing, make sure you use the development non...