/** * The file enables `@/store/index.js` to import all vuex modules * in a one-shot manner. There should not be any reason to edit this file. */constfiles=require.context('./modules',false,/\.js$/)constmodules={}files.keys().forEach(key=>{modules[key.replace(/(\.\/|\.js)/g,'')]=files(key).default})exportdefault{namespaced:true,modules}