export const state = () => ({ json: {}, }) export const mutations = { setJson(state, json) { state.json = json } }