Vue子组件调用父组件方法
作者:
King斌 | 来源:发表于
2020-06-24 17:19 被阅读0次
第一种方法是直接在子组件中通过this.$parent.event来调用父组件的方法
父组件
<template>
<div>
<child></child>
</div>
</template>
<script>
import child from '~/components/dam/child';
export default {
components: {
child
},
methods: {
fatherMethod() {
console.log('测试');
}
}
};
</script>
子组件
<template>
<div>
<button @click="childMethod()">点击</button>
</div>
</template>
<script>
export default {
methods: {
childMethod() {
this.$parent.fatherMethod();
}
}
};
</script>
本文标题:Vue子组件调用父组件方法
本文链接:https://www.haomeiwen.com/subject/qoxdfktx.html
网友评论