Skip to content

Instantly share code, notes, and snippets.

@acacha
Created April 21, 2018 09:38
Show Gist options
  • Save acacha/93e760306471ea919a481367eee94746 to your computer and use it in GitHub Desktop.
Save acacha/93e760306471ea919a481367eee94746 to your computer and use it in GitHub Desktop.
// USERS MODULE
export const LOGGED_USER = 'LOGGED_USER'
import Vue from 'vue'
import Vuex from 'vuex'
import users from './modules/users'
Vue.use(Vuex)
const debug = process.env.NODE_ENV !== 'production'
export default new Vuex.Store({
modules: {
users
},
strict: debug
})
// USERS
export const LOGGED_USER = 'LOGGED_USER'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment