创建mixin.js(名称没有限制可任意名称)
export default {
data(){
return{
tt:1,
cc:2
}
},
methods:{
jumpClick(){
console.log('触发了跳');
}
}
}
在其他页面中引用mixin.js
<template>
<div class="home">
<p>tt的值:{{tt}}</p>
<p>cc的值:{{cc}}</p>
</div>
</template>
<script>
//引用mixin.js使用mixin.js定义的内容
import mixin from './mixin'
export default {
//声明引用的mixin,如果使用多个则在数组中继续追加即可
mixins:[mixin]
}
</script>