-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc51Vue子组件传递数据给父组件.html
80 lines (70 loc) · 2.24 KB
/
c51Vue子组件传递数据给父组件.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue子组件传递数据给父组件</title>
<script src="vue.js"></script>
</head>
<body>
<!--组件命名中的注意点
1注册组件的时候使用了“驼峰命名”,那么在使用的时候需要转换成“短横线分隔命名”
例如:注册时:myFather -》 使用时:my-father
2在传递参数的时候如果想使用“驼峰命名”,那么必须写“短横线分隔命名”
例如:传递时:parent-name=“name” -》 接收时:props:[“parentName”]
3在传递方法的时候不能使用“驼峰命名”,只能使用“短横线分隔命名”
@parent-say=“say” -》 this.$emit("parent-say");
-->
<div id="app">
<father></father>
</div>
<template id="father">
<div>
<p>我是父组件</p>
<button @click="say">按钮 </button>
<!--这里痛parentsay 将父组件的say方法传递给子组件-->
<son @parentsay="say "></son>
</div>
</template>
<template id="son">
<div>
<p>我是子组件</p>
<button @click="sonsay">按钮 </button>
</div>
</template>
<script>
Vue.component("father",{
template:"#father",
data: function(){
return {
name:"lnj",
age:33
}
},
methods:{
say(data){
alert("父组件的方法");
console.log(data);
}
},
components: {
"son": {
template: "#son",
/*如果传递的是方法 那么子组件的的配置中不需要接收 需要在组件中定义一个方法*/
methods:{
sonsay(){
this.$emit("parentsay","子组件的数据")//可已传递参数 传给父组件
}
}
}
}
});
new Vue({
el: "#app",
data: {
},
methods: {
},
})
</script>
</body>
</html>