VUE子组件向父组件传值的两种方法
ps:写给自己看的,有问题留言一,子组件主动触发事件将数据传递给父组件1,在子组件上绑定某个事件以及事件触发的函数子组件代码<template><div><Tree :data="treeData" show-checkbox ref="treeData"></Tree><Button type="success" @click="submit
·
ps:写给自己看的,有问题留言
一,子组件主动触发事件将数据传递给父组件
1,在子组件上绑定某个事件以及事件触发的函数
子组件代码
<template>
<div>
<Tree :data="treeData" show-checkbox ref="treeData"></Tree>
<Button type="success" @click="submit"></Button>
</div>
</template>
事件在子组件中触发的函数
submit(){
this.$emit('getTreeData',this.$refs.treeData.getCheckedNodes());
},
2,在父组件中绑定触发事件
<AuthTree @getTreeData='testData'>
</AuthTree>
父组件触发函数显示子组件传递的数据
testData(data){
console.log("parent");
console.log(data)
},
控制台打印的数据
二,不需要再子组件中触发事件(如点击按钮,create()事件等等)
这种方式要简单得多,
1,子组件中绑定ref
<template>
<div>
<Tree :data="treeData" show-checkbox ref="treeData"></Tree>
</div>
</template>
然后在子组件中定义一个函数,这个函数是父组件可以直接调用的。函数的返回值定义为我们需要的数据。
getData(){
return this.$refs.treeData.getCheckedNodes()
},
然后再父组件注册子组件后绑定ref,调用子组件的函数获取数据
<AuthTree ref="authTree">
</AuthTree>
父组件函数调用
console.log( this.$refs.authTree.getData());
更多推荐
已为社区贡献1条内容
所有评论(0)