dictionary.js 519 B

12345678910111213141516171819202122232425262728
  1. // import {
  2. // reqDictionary
  3. // } from "@/request/api.js";
  4. // const state = {
  5. // dictionary: {},
  6. // };
  7. // const getters = {};
  8. // const mutations = {
  9. // vxDictionary(state, args) {
  10. // state.dictionary = args;
  11. // },
  12. // };
  13. // const actions = {
  14. // async vxDictionary({
  15. // commit
  16. // }, args) {
  17. // let result = await reqDictionary(args);
  18. // commit("vxDictionary", result.user);
  19. // },
  20. // };
  21. // export default {
  22. // namespaced: true,
  23. // state,
  24. // getters,
  25. // mutations,
  26. // actions,
  27. // };