import store from "../store/index"; export const getUserProfile = () => { let userProfile = store.getters["common/userProfile"]; if (!userProfile) { userProfile = JSON.parse(window.localStorage.getItem("userProfile")); } return userProfile; }