Before 2.0:
new Vue({ el: "#el", data: someData, events: { myevent: function(){} } });
after 2.0 :
vm.$on('myevent', function () {})