export const state = () => ({ error: "" }); export const mutations = { setError(state, error) { state.error = error; } };