export default { namespaced:true, state:{ text:"1232" }, mutations:{ add(state,{value}){ state.text = value; } } }