http://vuejs.org/api/options.html#mixins ``` js var mixin = { created: function () { console.log(2) } } var vm = new Vue({ created: function () { console.log(1) }, mixins: [mixin] }) // -> 1 // -> 2 ``` Should be ``` js // -> 2 // -> 1 ```