Closed
Description
http://vuejs.org/api/options.html#mixins
var mixin = {
created: function () { console.log(2) }
}
var vm = new Vue({
created: function () { console.log(1) },
mixins: [mixin]
})
// -> 1
// -> 2
Should be
// -> 2
// -> 1
Metadata
Metadata
Assignees
Labels
No labels