12345678910111213141516171819202122232425262728 |
- // import {
- // reqDictionary
- // } from "@/request/api.js";
- // const state = {
- // dictionary: {},
- // };
- // const getters = {};
- // const mutations = {
- // vxDictionary(state, args) {
- // state.dictionary = args;
- // },
- // };
- // const actions = {
- // async vxDictionary({
- // commit
- // }, args) {
- // let result = await reqDictionary(args);
- // commit("vxDictionary", result.user);
- // },
- // };
- // export default {
- // namespaced: true,
- // state,
- // getters,
- // mutations,
- // actions,
- // };
|