Skip to content

Instantly share code, notes, and snippets.

@blattmann
Last active August 16, 2019 06:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blattmann/fb582ad1d4f9783a6ab542f2f84a6791 to your computer and use it in GitHub Desktop.
Save blattmann/fb582ad1d4f9783a6ab542f2f84a6791 to your computer and use it in GitHub Desktop.
Vuex Module Boilerplate
import axios from 'axios';
const state = {};
const getters = {};
const actions = {};
const mutations = {};
export default {
state,
getters,
actions,
mutations,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment