Created
April 21, 2018 09:38
-
-
Save acacha/93e760306471ea919a481367eee94746 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// USERS MODULE | |
export const LOGGED_USER = 'LOGGED_USER' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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