vue如何在父组件指定点击事件后向子组件传递参数并调用子组件的事件?
发布日期:2020-11-26浏览次数:1299 来源:福州网站建设
父组件
<template>
<div>
<el-button type="text" @click="sonFun">useSon</el-button>
<sonV ref='sonV' :mes="sonData"></sonV>
</div>
</template>
<script>
import sonV from './test.vue';
export default {
components: {
sonV
},
data() {
return {
sonData: ''
};
},
medthods: {
sonFun() {
this.sonData = '123';
let param = 456;
this.$refs.sonV.sonFun(param);
}
}
};
</script>
-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
子组件
<template>
<div>{{mes}}</div>
</template>
<script>
export default {
props:['mes'],
data(){
return{
}
},
methods:{
sonFun(param){
console.log(this.mes)
console.log(param)
}
}
}
</script>
以上是由福州网站建设的小编为你分享了"vue如何在父组件指定点击事件后向子组件传递参数并调用子组件的事件?"文章,如果你在这方面有什么问题,随时联系我们