\n \n \n Bedankt dat je ons bezoekt.
\n Helaas is deze inhoud niet beschikbaar vanuit het land waarvan je ons\n bezoekt.\n
\n \n\n\n\n","import { render } from \"./App.vue?vue&type=template&id=654bd8ee\"\nimport script from \"./App.vue?vue&type=script&lang=js\"\nexport * from \"./App.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { createApp } from \"vue\";\nimport App from \"./App.vue\";\nimport router from \"./router\";\nimport store from \"./store\";\nimport { VueCookieNext } from \"vue-cookie-next\";\nimport { VueReCaptcha } from \"vue-recaptcha-v3\";\nimport VueSocials from \"vue-socials\";\n\n// Vue Select\nimport vSelect from \"vue-select\";\nimport \"vue-select/dist/vue-select.css\";\n\n// Custom CSS\nimport \"./assets/css/variable.css\";\nimport \"./assets/css/tailwind.css\";\nimport \"./assets/css/main.scss\";\n\n/* import the fontawesome core */\nimport { library } from \"@fortawesome/fontawesome-svg-core\";\n\n/* import specific icons */\nimport { faCalendar, faClockFour } from \"@fortawesome/free-regular-svg-icons\";\nimport {\n faPlus,\n faMinus,\n faEnvelope,\n faPhone,\n faCircleExclamation,\n faCaretDown,\n faBars,\n faXmark,\n faHouse,\n faLocationDot,\n} from \"@fortawesome/free-solid-svg-icons\";\nimport {\n faFacebookSquare,\n faInstagramSquare,\n} from \"@fortawesome/free-brands-svg-icons\";\n\n/* import font awesome icon component */\nimport { FontAwesomeIcon } from \"@fortawesome/vue-fontawesome\";\n\n/* add icons to the library */\nlibrary.add(\n faCalendar,\n faPlus,\n faMinus,\n faEnvelope,\n faPhone,\n faFacebookSquare,\n faInstagramSquare,\n faCircleExclamation,\n faCaretDown,\n faBars,\n faXmark,\n faHouse,\n faLocationDot,\n faClockFour\n);\n\nVueCookieNext.config({ expire: \"2h\", secure: true });\n\ncreateApp(App)\n .component(\"font-awesome-icon\", FontAwesomeIcon)\n .component(\"v-select\", vSelect)\n .use(store)\n .use(router)\n .use(VueReCaptcha, { siteKey: \"6LewtSkpAAAAAFYXpmAdloZy-Oi0vIKd-miFYFdm\" })\n .use(VueCookieNext)\n .use(VueSocials)\n .mount(\"#app\");\n","import { createRouter, createWebHistory } from \"vue-router\";\n\nconst routes = [\n {\n path: \"/:pathMatch(.*)*\",\n component: () =>\n import(/* webpackChunkName: \"404\" */ \"../layouts/InValidURL.vue\"),\n },\n {\n path: \"/\",\n component: () =>\n import(/* webpackChunkName: \"Before Auth\" */ \"../layouts/BeforeAuth.vue\"),\n children: [\n {\n path: \"/\",\n name: \"Login\",\n component: () =>\n import(/* webpackChunkName: \"Login\" */ \"../views/Login.vue\"),\n },\n {\n path: \"/forgotpassword\",\n name: \"ForgotPassword\",\n component: () =>\n import(\n /* webpackChunkName: \"ForgotPassword\" */ \"../views/ForgotPassword.vue\"\n ),\n },\n {\n path: \"/resetpassword\",\n name: \"ResetPassword\",\n component: () =>\n import(\n /* webpackChunkName: \"ForgotPassword\" */ \"../views/ResetPassword.vue\"\n ),\n },\n ],\n },\n {\n path: \"/dashboard\",\n component: () =>\n import(/* webpackChunkName: \"After Auth\" */ \"../layouts/AfterAuth.vue\"),\n redirect: \"/dashboard/onderzoeken\",\n children: [\n {\n path: \"/dashboard/:tab\",\n name: \"Dashboard\",\n component: () =>\n import(/* webpackChunkName: \"Dashboard\" */ \"../views/Dashboard.vue\"),\n },\n {\n path: \"/vergoedingen\",\n name: \"Vergoedingen\",\n component: () =>\n import(/* webpackChunkName: \"Fees\" */ \"../views/Fees.vue\"),\n },\n {\n path: \"/helpdesk\",\n name: \"Helpdesk\",\n component: () =>\n import(/* webpackChunkName: \"HelpDesk\" */ \"../views/HelpDesk.vue\"),\n },\n {\n path: \"/profiel\",\n name: \"Profiel\",\n component: () =>\n import(/* webpackChunkName: \"Profile\" */ \"../views/Profile.vue\"),\n },\n ],\n },\n];\n\nconst router = createRouter({\n history: createWebHistory(process.env.BASE_URL),\n routes,\n});\n\nexport default router;\n","import { useCookie, VueCookieNext } from \"vue-cookie-next\";\n\nconst setCookie = (key, value) => {\n VueCookieNext.setCookie(key, value);\n};\n\nconst getCookie = (key) => {\n return VueCookieNext.getCookie(key);\n};\n\nconst removeCookie = (key) => {\n return VueCookieNext.removeCookie(key);\n};\n\nconst keys = () => {\n return VueCookieNext.keys();\n};\n\nconst isCookieAvailable = (key) => {\n return VueCookieNext.isCookieAvailable(key);\n};\n\nexport { setCookie, getCookie, removeCookie, keys, isCookieAvailable };\n","// import Vue from \"vue\";\nimport { getCookie, setCookie, removeCookie } from \"@/helper/cookies\";\n\nconst state = {\n session: null,\n sessionExpire: false,\n};\n\nconst actions = {\n getValueFromkey(_, key) {\n return getCookie(key);\n },\n};\n\nconst mutations = {\n set(state, payload) {\n return setCookie(payload.key, payload.value);\n },\n setSession(state, payload) {\n state.session = payload;\n },\n removeAll() {\n removeCookie(\"session\");\n removeCookie(\"firstName\");\n removeCookie(\"lastName\");\n },\n setSessionExpire(state, payload = true) {\n state.sessionExpire = payload;\n },\n};\n\nconst getters = {\n getSession(state) {\n return state.session || getCookie(\"session\");\n },\n getName() {\n return getCookie(\"firstName\");\n },\n getInitialName() {\n let firstName = getCookie(\"firstName\");\n let lastName = getCookie(\"lastName\");\n let initialName = \"\";\n if (firstName) {\n initialName = initialName + firstName.charAt(0);\n }\n if (lastName) {\n initialName = initialName + lastName.charAt(0);\n }\n\n return initialName;\n },\n};\n\nexport default {\n namespaced: true,\n state,\n actions,\n mutations,\n getters,\n};\n","const state = {\n error: {\n code: 0,\n enable: false,\n message: \"\",\n },\n};\n\nconst mutations = {\n enable(state, payload) {\n state.error.code = payload.code;\n state.error.message = payload.message;\n state.error.enable = true;\n },\n disable(state) {\n state.error.code = 0;\n state.error.message = \"\";\n state.error.enable = false;\n },\n};\n\nexport default {\n namespaced: true,\n state,\n mutations,\n};\n","const state = {\n loading: [],\n};\n\nconst mutations = {\n enable(state) {\n state.loading.push(true);\n },\n disable(state) {\n state.loading.pop();\n },\n};\n\nconst getters = {\n getLoadingState() {\n if (state.loading.length > 0) {\n return true;\n }\n return false;\n },\n};\n\nexport default {\n namespaced: true,\n state,\n mutations,\n getters,\n};\n","const state = {\n modalVisiable: false,\n};\n\nconst mutations = {\n changeModalVisiablityStatus(state, val) {\n state.modalVisiable = val;\n },\n};\n\nexport default {\n namespaced: true,\n state,\n mutations,\n};\n","export default {\n res(error) {\n return {\n message: error.message || \"Er is iets fout gegaan !!!\",\n code: error.status || 0,\n };\n },\n};\n","// import Vue from \"vue\";\nimport axios from \"axios\";\nimport errorRes from \"./errorRes\";\nimport store from \"@/store\";\nimport router from \"@/router\";\n\nconst baseurl = \"https://mijn.mselect.nl/api\";\n\nconst client = {\n auth: false,\n withAuth() {\n client.auth = true;\n return client;\n },\n withoutAuth() {\n client.auth = false;\n return client;\n },\n};\n\naxios.interceptors.request.use((config) => {\n store.commit(\"loading/enable\");\n if (client.auth) {\n let token = store.getters[\"storage/getSession\"];\n config.headers.Authorization = token;\n }\n return config;\n});\n\naxios.interceptors.response.use(\n (response) => {\n store.commit(\"loading/disable\");\n return response;\n },\n (error) => {\n store.commit(\"loading/disable\");\n if (error.response) {\n let errorResponse = errorRes.res(error.response.data);\n if (client.auth) {\n // Vue.$toast(errorResponse.message);\n }\n\n if (errorResponse.code === 403 || errorResponse.code === 498) {\n store.commit(\"storage/removeAll\");\n store.commit(\"storage/setSessionExpire\");\n // Vue.$toast(errorResponse.message);\n if (client.auth) {\n router.push(\"/\");\n }\n }\n\n // else if (errorResponse.code === 400 || errorResponse.code === 500) {\n // store.commit(\"error/enable\", errorResponse);\n // }\n throw errorResponse;\n } else {\n // Vue.$toast(error.message);\n throw error;\n }\n }\n);\n\nconst types = [\"get\", \"post\", \"put\", \"delete\"];\ntypes.forEach((verb) => {\n client[verb] = async (url, params = {}, data = {}, headers = {}) => {\n return await axios({\n method: verb,\n url: baseurl + url,\n params,\n data,\n headers: headers,\n })\n .then((response) => {\n client.auth = false;\n return response.data;\n })\n .catch((error) => {\n client.auth = false;\n throw error;\n });\n };\n});\n\nexport default client;\n","export const checkLocationUrl = \"/User/checkLocation\";\nexport const loginUrl = \"/User/authenticate\";\nexport const logoutUrl = \"/User/logout\";\nexport const sendResetMailUrl = \"/User/SendResetMail\";\nexport const checkResetTokenUrl = \"/User/CheckResetToken\";\nexport const passwordResetUrl = \"/User/PasswordReset\";\n\nexport const getCurrentRegistrationUrl = \"/Portal/api/GetCurrentRegistrations\";\nexport const getResearchesUrl = \"/Portal/api/GetResearches\";\nexport const GetResearchOptionsUrl = \"/portal/api/GetResearchOptionsLink\";\nexport const getScheduledAppointmentsUrl =\n \"/Portal/api/GetScheduledAppointments\";\n// export const getIncentiveHistoryUrl = \"/Portal/api/GetIncentiveHistory\";\nexport const getUserIncentivesUrl = \"/Portal/api/GetUserIncentives\";\n\nexport const updateEmailRequestUrl = \"/Portal/api/SendEmailChangeRequest\";\nexport const updateEmailUrl = \"/Portal/api/UpdateEmail\";\nexport const updateNumberUrl = \"/Portal/api/UpdateTelephoneNumbers\";\nexport const updatePasswordUrl = \"/Portal/api/UpdatePassword\";\nexport const getUnsubscribeLinkUrl = \"/Portal/api/GetUnsubscribeLink\";\nexport const getProfileBlocksUrl = \"/Portal/api/GetProfileBlocks\";\nexport const getUserProfileUrl = \"/Portal/api/GetUserProfile\";\n","export default {\n doLogin(user) {\n return {\n username: user.email,\n password: user.password,\n panelcode: \"ms\",\n };\n },\n\n doLogout(session) {\n return {\n sessionid: session,\n };\n },\n\n sendResetMail(user) {\n return {\n emailAddress: user.email,\n panelcode: \"ms\",\n };\n },\n\n checkResetToken(token) {\n return {\n resetToken: token,\n };\n },\n\n passwordReset(user) {\n return {\n resetToken: user.token,\n password: user.password,\n };\n },\n};\n","export default {\n checkLocation(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n doLogin(response) {\n return {\n firstName: response.firstName,\n lastName: response.lastName,\n session: response.session,\n };\n },\n\n doLogout(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n sendResetMail(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n checkResetToken(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n passwordReset(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n};\n","import client from \"../client\";\nimport {\n loginUrl,\n logoutUrl,\n sendResetMailUrl,\n checkResetTokenUrl,\n passwordResetUrl,\n checkLocationUrl,\n} from \"../url\";\nimport req from \"./request\";\nimport res from \"./response\";\n\nexport default {\n async checkLocation() {\n return res.checkLocation(\n await client.withoutAuth().post(checkLocationUrl, {}, {})\n );\n },\n\n async doLogin(user) {\n return res.doLogin(\n await client.withoutAuth().post(loginUrl, {}, req.doLogin(user))\n );\n },\n\n async doLogout(session) {\n return res.doLogout(\n await client.withoutAuth().post(logoutUrl, {}, req.doLogout(session))\n );\n },\n\n async sendResetMail(user) {\n return res.sendResetMail(\n await client\n .withoutAuth()\n .post(sendResetMailUrl, {}, req.sendResetMail(user))\n );\n },\n\n async checkResetToken(token) {\n return res.checkResetToken(\n await client\n .withoutAuth()\n .post(checkResetTokenUrl, {}, req.checkResetToken(token))\n );\n },\n\n async passwordReset(user) {\n return res.passwordReset(\n await client\n .withoutAuth()\n .post(passwordResetUrl, {}, req.passwordReset(user))\n );\n },\n};\n","import auth from \"@/api/auth/index\";\nimport { getCookie, setCookie, removeCookie } from \"@/helper/cookies\";\n\nconst actions = {\n async checkLocation() {\n try {\n return await auth.checkLocation();\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async doLogin({ commit }, user) {\n try {\n let response = await auth.doLogin(user);\n if (Object.keys(response).length > 0) {\n await commit(\"storage/setSession\", response.session, { root: true });\n await commit(\n \"storage/set\",\n { key: \"session\", value: response.session },\n { root: true }\n );\n await commit(\n \"storage/set\",\n { key: \"firstName\", value: response.firstName },\n { root: true }\n );\n await commit(\n \"storage/set\",\n { key: \"lastName\", value: response.lastName },\n { root: true }\n );\n return response;\n }\n throw new Error(\"\");\n } catch (error) {\n throw error;\n }\n },\n\n async doLogout(state, session) {\n try {\n return await auth.doLogout(session);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async sendResetMail(state, user) {\n try {\n return await auth.sendResetMail(user);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async checkResetToken(state, token) {\n try {\n return await auth.checkResetToken(token);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async passwordReset(state, user) {\n try {\n return await auth.passwordReset(user);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n};\n\nexport default {\n namespaced: true,\n actions,\n};\n","export default {\n getCurrentRegistration(registrations) {\n let response = [];\n registrations.forEach((registration) => {\n response.push({\n title: registration.title,\n when: registration.when,\n description: registration.description,\n location: registration.location,\n incentive: registration.incentive,\n unsubscribeLink: registration.unsubscribeLink,\n shareLink: registration.shareLink,\n });\n });\n return response;\n },\n\n getScheduledAppointments(appointments) {\n let response = [];\n appointments.forEach((appointment) => {\n response.push({\n title: appointment.title,\n when: appointment.when,\n description: appointment.description,\n location: appointment.location,\n incentive: appointment.incentive,\n });\n });\n return response;\n },\n\n getResearches(researches) {\n let response = [];\n\n researches.forEach((research) => {\n response.push({\n title: research.title,\n when: research.when,\n description: research.description,\n location: research.location,\n incentive: research.incentive,\n status: research.status,\n participationLink: research.participationLink,\n shareLink: research.shareLink,\n unsubscribeLink: research.unsubscribeLink,\n share: research.share,\n });\n });\n\n return response;\n },\n\n getResearchOptionsUrl(response) {\n return {\n url: response.researchOptionsUrl,\n };\n },\n};\n","import client from \"../client\";\nimport {\n getCurrentRegistrationUrl,\n getScheduledAppointmentsUrl,\n getResearchesUrl,\n GetResearchOptionsUrl,\n} from \"../url\";\nimport res from \"./response\";\n\nexport default {\n async getCurrentRegistration() {\n return res.getCurrentRegistration(\n await client.withAuth().post(getCurrentRegistrationUrl)\n );\n },\n\n async getScheduledAppointments() {\n return res.getScheduledAppointments(\n await client.withAuth().post(getScheduledAppointmentsUrl)\n );\n },\n\n async getResearches() {\n return res.getResearches(await client.withAuth().post(getResearchesUrl));\n },\n\n async getResearchOptionsUrl() {\n return res.getResearchOptionsUrl(\n await client.withAuth().post(GetResearchOptionsUrl)\n );\n },\n};\n","import dashboard from \"@/api/dashboard/index\";\n\nconst actions = {\n async getCurrentRegistration() {\n try {\n let registrations = await dashboard.getCurrentRegistration();\n return { data: registrations };\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getScheduledAppointments({ dispatch }) {\n try {\n let appointments = await dashboard.getScheduledAppointments();\n let appointmentsCount = await dispatch(\"getNewCount\", {\n length: appointments.length,\n key: \"Agenda\",\n });\n return { data: appointments, count: appointmentsCount };\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getResearches({ dispatch }) {\n try {\n let researches = await dashboard.getResearches();\n let researchesCount = await dispatch(\"getNewCount\", {\n length: researches.length,\n key: \"Onderzoeken\",\n });\n return { data: researches, count: researchesCount };\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getResearchOptionsUrl() {\n try {\n let researchesOptions = await dashboard.getResearchOptionsUrl();\n return { data: researchesOptions };\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getNewCount({ dispatch, commit }, payload) {\n let oldLength = await dispatch(\"storage/getValueFromkey\", payload.key, {\n root: true,\n });\n await commit(\n \"storage/set\",\n { key: payload.key, value: payload.length },\n { root: true }\n );\n if (oldLength) {\n return (payload.length - oldLength).toString();\n }\n return payload.length.toString();\n },\n};\n\nexport default {\n namespaced: true,\n actions,\n};\n","export default {\n getUserIncentives(incentives) {\n let response = {};\n response = {\n deelnameVergoeding: incentives.deelnameVergoeding,\n reiskosten: incentives.reiskosten,\n goededoel: incentives.goededoel,\n };\n return response;\n },\n};\n","import client from \"../client\";\nimport { getUserIncentivesUrl } from \"../url\";\nimport res from \"./response\";\n\nexport default {\n async getUserIncentives() {\n return res.getUserIncentives(\n await client.withAuth().post(getUserIncentivesUrl)\n );\n },\n};\n","import fees from \"@/api/fees/index\";\n\nconst actions = {\n async getUserIncentives() {\n try {\n return await fees.getUserIncentives();\n } catch (error) {\n throw new Error(error.message);\n }\n },\n};\n\nexport default {\n namespaced: true,\n actions,\n};\n","export default {\n updatePassword(passwords) {\n return {\n oldPassword: passwords.old,\n newPassword: passwords.new,\n };\n },\n\n updateNumber(numbers) {\n return {\n MobileNumber: numbers.mobileNumber,\n landLineNumber: numbers.landline,\n };\n },\n\n updateEmailRequest(email) {\n return {\n password: email.password,\n currentEmailAddress: email.current,\n newEmailAddress: email.new,\n };\n },\n updateEmail(pincode) {\n return {\n pincode: pincode,\n };\n },\n};\n","export default {\n updatePassword(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n updateNumber(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n updateEmailRequest(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n updateEmail(response) {\n return {\n status: response.status,\n message: response.message,\n };\n },\n\n getProfileBlocks(response) {\n let profileBlocks = {};\n profileBlocks.upToDatePercentage = response.upToDatePercentage;\n profileBlocks.hasOutOfDateBlocks = response.hasOutOfDateBlocks;\n profileBlocks.visibleBlocks = [];\n response.visibleBlocks.forEach((visibleBlock) => {\n profileBlocks.visibleBlocks.push({\n alias: visibleBlock.alias,\n obsolete: visibleBlock.obsolete,\n updateLink: visibleBlock.updateLink,\n points: visibleBlock.points,\n imageFile: visibleBlock.imageFile,\n });\n });\n\n return profileBlocks;\n },\n\n getUnsubscribeLink(response) {\n return {\n unsubscribeLink: response.unsubscribeLink,\n };\n },\n\n getUserProfile(response) {\n return {\n firstName: response.firstName,\n lastName: response.lastName,\n gender: response.gender,\n email: response.email,\n mobile: response.mobile,\n ibanUrl: response.ibanUrl,\n profileUrl: response.profileUrl,\n landLine: response.landLine,\n };\n },\n};\n","import client from \"../client\";\nimport req from \"./request\";\nimport res from \"./response\";\nimport {\n updatePasswordUrl,\n updateNumberUrl,\n updateEmailRequestUrl,\n updateEmailUrl,\n getProfileBlocksUrl,\n getUnsubscribeLinkUrl,\n getUserProfileUrl,\n} from \"../url\";\n\nexport default {\n async updatePassword(password) {\n return res.updatePassword(\n await client\n .withAuth()\n .post(updatePasswordUrl, {}, req.updatePassword(password))\n );\n },\n\n async updateNumber(number) {\n return res.updateNumber(\n await client\n .withAuth()\n .post(updateNumberUrl, {}, req.updateNumber(number))\n );\n },\n\n async updateEmailRequest(email) {\n return res.updateEmailRequest(\n await client\n .withAuth()\n .post(updateEmailRequestUrl, {}, req.updateEmailRequest(email))\n );\n },\n async updateEmail(pincode) {\n return res.updateEmail(\n await client.withAuth().post(updateEmailUrl, {}, req.updateEmail(pincode))\n );\n },\n async getProfileBlocks() {\n return res.getProfileBlocks(\n await client.withAuth().post(getProfileBlocksUrl)\n );\n },\n async getUnsubscribeLink() {\n return res.getUnsubscribeLink(\n await client.withAuth().post(getUnsubscribeLinkUrl)\n );\n },\n async getUserProfile() {\n return res.getUserProfile(await client.withAuth().post(getUserProfileUrl));\n },\n};\n","import profile from \"@/api/profile/index\";\n\nconst actions = {\n async updatePassword(state, passwords) {\n try {\n return await profile.updatePassword(passwords);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async updateNumber(state, number) {\n try {\n return await profile.updateNumber(number);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async updateLandlineNumber(state, number) {\n try {\n return await profile.updateLandlineNumber(number);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async updateEmailRequest(state, email) {\n try {\n return await profile.updateEmailRequest(email);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async updateEmail(state, pincode) {\n try {\n return await profile.updateEmail(pincode);\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getProfileBlocks() {\n try {\n return await profile.getProfileBlocks();\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getUnsubscribeLink() {\n try {\n return await profile.getUnsubscribeLink();\n } catch (error) {\n throw new Error(error.message);\n }\n },\n\n async getUserProfile() {\n try {\n return await profile.getUserProfile();\n } catch (error) {\n throw new Error(error.message);\n }\n },\n};\n\nexport default {\n namespaced: true,\n actions,\n};\n","import { createStore } from \"vuex\";\n\nimport storage from \"./module/storage\";\nimport error from \"./module/error\";\nimport loading from \"./module/loading\";\nimport modal from \"./module/modal\";\nimport auth from \"./module/auth\";\nimport dashboard from \"./module/dashboard\";\nimport fees from \"./module/fees\";\nimport profile from \"./module/profile\";\n\nexport default createStore({\n state: {},\n getters: {},\n mutations: {},\n actions: {},\n modules: {\n storage,\n error,\n loading,\n modal,\n auth,\n dashboard,\n fees,\n profile,\n },\n});\n","