export default { state: { logo: '', }, mutations: { changeLogo(state, newLogo) { state.logo = newLogo } } }