Guest User

Untitled

a guest
Nov 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import ui from './modules/ui'
  4.  
  5. Vue.use(Vuex)
  6.  
  7. const debug = process.env.NODE_ENV !== 'production'
  8.  
  9. export default new Vuex.Store({
  10. modules: {
  11. ui
  12. },
  13. strict: debug
  14. })
Add Comment
Please, Sign In to add comment