mixin混合
Posted alannero
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mixin混合相关的知识,希望对你有一定的参考价值。
student.vue
<template> <div class="student"> <h2>{{name}}</h2> <h2>{{age}}</h2> <button @click="showName">点我显示名字</button> </div> </template> <script>
// 局部引入
import {hunhe,hunhe2} from \'../mixin.js\' export default{ name:\'Student\', /*data() { return{ name:\'张三\', age:18 } },*/ mixins:[hunhe,hunhe2] } </script> <style> </style>
school.vue
<template> <div class="school"> <h2>{{name}}</h2> <h2>{{Add}}</h2> <button @click="showName">点我显示名字</button> </div> </template> <script> import {hunhe} from \'../mixin.js\' export default{ name:\'School\', data() { return{ name:\'老年大学\', Add:\'加利福尼亚\' } }, mixins:[hunhe] } </script> <style> </style>
mixin.js
export const hunhe = { methods:{ showName(){ alert(this.name) } } } export const hunhe2 = { data(){ return{ name:"大王", age:18 } } }
main.js
import Vue from \'vue\' import App from \'./App.vue\' Vue.config.productionTip = false //全局引入 此时单独的组建不需再次引入mixin.js,使用mixins import {hunhe,hunhe2} from \'./mixin.js\' Vue.mixin(hunhe) Vue.mixin(hunhe2) new Vue({ render: h => h(App), }).$mount(\'#app\')
以上是关于mixin混合的主要内容,如果未能解决你的问题,请参考以下文章