您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.js 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import Vue from 'vue';
  2. import Vuex from 'vuex';
  3. import TimeshareModule from './modules/timeshare/timeshare';
  4. import UsersModule from './modules/users';
  5. import StatusModule from './modules/timeshare/status';
  6. import UnitConfigurationModule from './modules/timeshare/unitConfiguration';
  7. import TimeshareBuyModule from './modules/timeshare/buyPage';
  8. import SearchTabModule from './modules/searchTab';
  9. import ResortModule from './modules/timeshare/resort';
  10. import PropertyModule from './modules/property/property';
  11. import WeekModule from './modules/timeshare/week';
  12. import PropertyAdminModule from './modules/property/propertyAdmin';
  13. import PropertyList from './modules/property/propertyLists';
  14. import PropertyTypes from './modules/property/propertyTypes';
  15. import Register from './modules/user/register';
  16. import WeekList from './modules/timeshare/weekList';
  17. import MyWeeks from './modules/timeshare/myWeeks';
  18. import Bid from './modules/processFlow/bid';
  19. import Authentication from './modules/user/authentication';
  20. import PropertySearch from './modules/property/propertySearch';
  21. import SearchLog from './modules/logs/searchLog';
  22. import Template from './modules/communication/template';
  23. import Info from './modules/communication/info';
  24. Vue.use(Vuex);
  25. /* eslint no-param-reassign: ["error", { "props": false }] */
  26. export default new Vuex.Store({
  27. modules: {
  28. myWeeks: MyWeeks,
  29. timeshare: TimeshareModule,
  30. users: UsersModule,
  31. status: StatusModule,
  32. unitConfiguration: UnitConfigurationModule,
  33. timeshareBuy: TimeshareBuyModule,
  34. searchTab: SearchTabModule,
  35. resort: ResortModule,
  36. property: PropertyModule,
  37. week: WeekModule,
  38. propertyAdmin: PropertyAdminModule,
  39. propertyList: PropertyList,
  40. propertyTypes: PropertyTypes,
  41. register: Register,
  42. weekList: WeekList,
  43. bid: Bid,
  44. authentication: Authentication,
  45. propertySearch: PropertySearch,
  46. searchLog: SearchLog,
  47. template: Template,
  48. info: Info,
  49. },
  50. });