SOURCE

var Mixin = {
  created:function(){
    this.hello()
  },
  methods:{
    hello:function(){
      console.log("hello from mixin")
    }
  }
}

var Component = Vue.extend({
  mixin:[Mixin]
})

var component = new Component()
console 命令行工具 X clear

                    
>
console