project.js 381 B

12345678910111213141516171819202122232425
  1. // https://codeburst.io/dynamic-modules-with-vuex-and-vue-b9c481ca792
  2. // https://www.brophy.org/post/instance-aware-vuex-modules-1/
  3. // import qs from 'querystring'
  4. // import { REST } from 'api/rest-axios'
  5. export default {
  6. namespaced: true,
  7. // initial state
  8. state: {
  9. },
  10. // getters
  11. getters: {
  12. },
  13. // mutations
  14. mutations: {
  15. },
  16. // actions
  17. actions: {
  18. }
  19. }