Including Vue in the project
We're finally ready to start actually writing some code!
The first thing that you'll need to do in a Vue.js project is to include the Vue library.
There are number of ways to do that. For example you could use Webpack and bundle the library in a JavaScript build file and include that in the project.
But we're actually going to use a production-ready build of Vue since we won't be using Webpack in this particular project.
Click to load comments...