Now that we've had a detailed look at what makes up an application driven by Vuex, let's make a playground project to take advantage of these features!
Run the following in your Terminal:
# Create a new Vue project
$ vue init webpack-simple vuex-counter
# Navigate to directory
$ cd vuex-counter
# Install dependencies
$ npm install
# Install Vuex
$ npm install vuex
# Run application
$ npm run dev