小说小程序后端代码仓库
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.

31 lines
465 B

7 months ago
  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 online from './modules/online'
  8. import getters from './getters'
  9. Vue.use(Vuex)
  10. export default new Vuex.Store({
  11. modules: {
  12. app,
  13. user,
  14. permission,
  15. enhance,
  16. online,
  17. },
  18. state: {
  19. },
  20. mutations: {
  21. },
  22. actions: {
  23. },
  24. getters
  25. })