Uniapp 父组件调用子组件方法给子组件动态传值
作者:互联网
子组件
<template> <view class="hb-comment"> testcontent </view> </template> <script> export default { name: 'question-comment’, //名字 data() { return { } }, methods: { likeSuccess(commentId){ //父组件要调用的方法 console.log(8888) this.likeComplete(commentId); }, } }; </script>
父组件
<template> <view> //ref='questionComment' <question-comment ref='questionComment' @openInput="openInput" @delComment="delComment" @preLike="preLike" :deleteTip="'确认删除?'" :cmData="commentData" v-if="commentData"></question-comment> </view> </template> <script> import questionComment from '@/components/comments/question-comment.vue' export default{ components:{ questionComment //注册子组件 }, computed:{ }, onShow(){ }, data(){ return { } }, methods:{ async like(comment_id){ await this.$http .post(`${giveQuestionPraise}`, { comment_id: comment_id }) .then((r)=> { console.log(r.data.state) if(r.data.state === 2) { this.$refs.questionComment.likeSuccess(comment_id); //调用子组件方法 } }); }, } </script>
标签:comment,Uniapp,调用,data,组件,给子,questionComment,id 来源: https://www.cnblogs.com/wt645631686/p/15864082.html