vue2中refs获取不到子组件中的方法?,而获取到的是undefined
因为注册了多个ref,获取是不能单单知识refs.xxx,需要使用数组和索引来获取具体一个组件refs[index].xxx
好这么一写,导致前两个组件都无法正常使用……
页面也会有这个报错:<组件名> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
使用this.$nextTick(),来等组件渲染完毕之后再使用refs调用子组件方法