export default { state:{ "username":"foo", "age":18 }, getters: { }, mutations: { addAge(state) { state.age += 1 } }, actions: { } }