vue调用子组件里的方法

使用子组件内部的方法
<!--给组件绑上一个ref属性,例如tree-->
<Tree :data="data2" ref="tree" show-checkbox></Tree>
//然后就可以使用组件里的方法获取返回值
console.log(this.$refs.tree.getCheckedNodes())

this.$refs.tree.show()

组件里的方法:
getCheckedNodes(){
return “123”
}

show(){
this.visible=true;
}

上一篇:vue如何在父组件中调用子组件的方法


下一篇:vue中ref的用法