本文主要是介绍vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef‘ of undefined“,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef’ of undefined”
最近用vue做的一个界面,引入了一个子组件,在父组件中调用子组件的方法时,报错提示: [Vue warn]: Error in v-on handler: “TypeError: Cannot read property ‘methods’ of undefined”
子组件中定义的方法如下:
export default {data(){return {methods: {// 查询方法search(){console.log("查询")},}}<
这篇关于vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef‘ of undefined“的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!