-
Notifications
You must be signed in to change notification settings - Fork 303
/
38.组件-父组件把方法传递给子组件.html
62 lines (61 loc) · 1.87 KB
/
38.组件-父组件把方法传递给子组件.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="./lib/vue.js"></script>
</head>
<body>
<div id="app">
<!--父组件想子组件传递方法使用的是事件绑定机制: v-on 当我们自定义了一个事件属性之后,
子组件就能过通过某型方法,来调用传进去的这个方法了-->
<com2 @func="show">
</com2>
</div>
<template id='temp1'>
<div>
<h1>子组件</h1>
<input type="button" @click="myclick" value="这个是子组件的按钮,点击它,触发父组件传过来的func方法 ">
</div>
</template>
<script>
//定义了一个字面类型的组件模板对象
var com2 = {
template: '#temp1' ,
methods: {
myclick(){
//当点击子组件方法的时候,如何拿到父组件传递过来的func方法
//emit是触发的意思
this.$emit('func', this.sonmsg)
}
},
data() {
return {
sonmsg: {
name: 'aaa',
age: 6
}
}
}
}
var vm = new Vue({
el: '#app',
data: {
datamsgFromSon: null
},
methods: {
show(data){
// console.log('调用了父组件身上的show方法'+data)
console.log(data)
this.datamsgFromSon = data
},
},
components:{
com2
},
})
</script>
</body>
</html>