mixins
mixins
const mixin = {
created: function () { console.log(1) }
}
const vm = new Vue({
created: function () { console.log(2) },
mixins: [mixin]
})
// => 1
// => 2Last updated
const mixin = {
created: function () { console.log(1) }
}
const vm = new Vue({
created: function () { console.log(2) },
mixins: [mixin]
})
// => 1
// => 2Last updated