// 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, // };