<template>
<div>
<button @click='activeChild'>点击触发子组件事件</button>
<child ref="child"></child>
// 这里的先给子组件添加一个ref属性
</div>
</template>
<script>
exports default{
methods: {
activeChild(){
this.$refs.child.childMethods('aaaa')
//这里使用$refs来调用子组件 childMethods为子组件里的函数。'aaa'为要传递的参数
}
}
}
</script>
版权属于:小小窝/禾下月
本文链接:https://hxyxyz.top/index.php/Web/238.html
本站文章采用 知识共享署名4.0 国际许可协议 进行许可,请在转载时注明出处及本声明!