You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
414 B

  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import app from './modules/app'
  4. import user from './modules/user'
  5. import permission from './modules/permission'
  6. import enhance from './modules/enhance'
  7. import getters from './getters'
  8. Vue.use(Vuex)
  9. export default new Vuex.Store({
  10. modules: {
  11. app,
  12. user,
  13. permission,
  14. enhance
  15. },
  16. state: {
  17. },
  18. mutations: {
  19. },
  20. actions: {
  21. },
  22. getters
  23. })