Skip to content

Instantly share code, notes, and snippets.

@ramsaylanier
Created November 21, 2017 04:18
Show Gist options
  • Save ramsaylanier/d17c91661c893a591c70a1e99360c33c to your computer and use it in GitHub Desktop.
Save ramsaylanier/d17c91661c893a591c70a1e99360c33c to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Vuex from 'vuex'
import ui from './modules/ui'
Vue.use(Vuex)
const debug = process.env.NODE_ENV !== 'production'
export default new Vuex.Store({
modules: {
ui
},
strict: debug
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment