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 ```
Activity
yyx990803 commentedon Jul 22, 2015
Thanks!
Merge pull request #92 from ATLgo/patch-4
Merge pull request vuejs#92 from boombang/patch-2
docs: add isatrio as a contributor (vuejs#92)