var Mixin = { created:function(){ this.hello() }, methods:{ hello:function(){ console.log("hello from mixin") } } } var Component = Vue.extend({ mixin:[Mixin] }) var component = new Component()