index.js 452 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * long description for the file
  3. *
  4. * @summary short description for the file
  5. * @author wu <308822989@qq.com>
  6. *
  7. * Created at : 2018-08-27 14:57:23
  8. * Last modified : 2018-08-27 14:57:23
  9. */
  10. import login from './login.js';
  11. const state = {
  12. status1:0
  13. }
  14. const getters = {
  15. }
  16. const mutations = {
  17. }
  18. const actions = {
  19. }
  20. //
  21. export default {
  22. namespaced: true,
  23. state,
  24. getters,
  25. mutations,
  26. actions,
  27. modules: {
  28. login: login
  29. }
  30. }