gpt4 book ai didi

methods - vuejs中父组件传递给子组件的方法

转载 作者:搜寻专家 更新时间:2023-10-30 22:09:17 26 4
gpt4 key购买 nike

有人可以帮我在 vue.js 中将方法从父组件传递到子组件吗?我一直在尝试通过将方法作为 Prop 传递来做到这一点...

我的父组件片段:

methods: { 

test: function () {
console.log('from test method')
}

}

<template>
<child-component test="test"><child-component>
</template>

子组件片段

created: {
this.test() //returns test is not a function
},

props: ['test']

有人可以帮忙吗?

提前致谢!

最佳答案

您正在尝试按照描述的方式将函数作为文字传递 here .你最终得到 test Prop 是字符串......你应该使用:指示动态绑定(bind)如下:

<child-component :test="test"><child-component>"

关于methods - vuejs中父组件传递给子组件的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39240291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com