I think it would make sense to allow methods to be nested under sub-objects: ``` js new Vue({ methods: { group: { foo() { // `this` should be the vm }, bar() { // `this` should be the vm }, } } }); ```