Example template for fast prototyping using Vue.js and the Axios package. It integrates the yes/no API to showcase the use of axios and Vue's basic features.
VueJs is a great javascript framework, which is easy to use, especially if you know some HTML, CSS and Javascript. Axios is a promised based HTTP request package, which simplifies HTTP requests in Javascript. Axios makes consumming APIs super easy.
If you don't know anything about promises or asynchronous javascript check out the MDN web docs.
https://whackathon.org/examples/vue-axios-template/
For this template to work you must have node and npm installed on your system. Afterwards you need to install the vue-cli, which you can install globally by typing npm install -g @vue/cli
into your terminal.
Installs all package dependencies
npm install
Runs the current project on localhost
npm run serve
Builds the static files for production
npm run build