vue 子组件 $emit方法 调用父组件方法
$emit方法
父组件
<template><div>
<child @callFather="activeSon"></child>
</div>
</template>
<script>
import child from '@/components/child';
export default {
components: {
child
},
methods: {
fatherMethod() {
console.log('father组件');
},
activeSon(){
this.fatherMethod()
}
}
}
</script>
子组件
<template><div @click="activeBtn"> </div>
</template>
<script>
export default {
methods: {
activeBtn() {
this.$emit("callFather")
}
}
}
</script>
以上是 vue 子组件 $emit方法 调用父组件方法 的全部内容, 来源链接: utcz.com/z/376789.html