vue中父组件调用子组件里的函数并传值

<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>
hxy

hxy

秦 夏

留下你的评论

快留下你的小秘密吧