mixins就是混入。
一个混入对象可以包含任意组件选项。
同一个生命周期,混入对象会比组件的先执行。
1.创建一个test.js,用export暴露出mixins对象
export const mixinsTest = { methods:{ hello(){ console.log("hello"); } }, created(){ this.hello() }}
2.在组件中引入这个mixins对象,通过mixins:[xxx],使用mixins对象
home
补充:
可以混入多个mixins对象
//暴露两个mixins对象export const mixinsTest = { methods: { hello() { console.log("hello mixins"); } }, created() { this.hello(); },}export const mixinsTest2 = { methods:{ hello2(){ console.log("hello2"); } }, created() { this.hello2(); },}
组件中引入两个mixins对象
home
打印的顺序是: