父组件通过点击触发向子组件传值
父组件通过点击触发向子组件传值父组件app.vue``、、、javascript<el-button type="primary" @click="handleSearch">查询</el-button> <LedgerEquipTable class="ledgerEquipTable" ref="tableList"/> handleSearch()...
·
父组件通过点击触发向子组件传值
/*父组件中代码*/
<el-button type="primary" @click="handleSearch">查询</el-button>
<LedgerEquipTable class="ledgerEquipTable" ref="tableList"/>/*在父组件注册的子组件*/
<script>
methods:{
handleSearch(){
this.$refs.tableList.sendItem(this.equipCondition,this.branchname)
}
}
</script>
/*子组件中代码*/
methods:{
sendItem(this.equipCondition,this.branchname){
/*接收参数*/
}
}
更多推荐
已为社区贡献4条内容
所有评论(0)