vue2.0 如何把子组件的数据传给父组件(推荐)
在父组件 App.vue 中引用子组件 A.vue,把 A中的数据传给App.
ps:没看父组件传给子组件的先看看去。
1、代码
子组件 A.vue
<template> <div> <h3>这里是子组件的内容</h3> <button v-on:click="spot">点一下就传</button> </div> </template> <script> export default { methods: { spot: function() { // 与父组件通信一定要加上这句话 this.$emit("spot", '我是子组件传给父组件的内容就我。。') } } } </script>
父组件 App.vue
<template> <div id="app"> <!-- 父组件直接用 v-on 来监听子组件触发的事件。 --> <!-- 需跟子组件中的$emit组合使用 --> <A v-on:spot="spot"/> </div> </template> <script> import A from './components/A' export default { name: 'App', components: { A }, methods:{ spot:function(data){ console.log(data) } } } </script>
2、总结
1、$emit很重要,使用 $emit(事件名,参数) 触发事件
2、子组件需要某种方式来触发自定义事件
3、父组件直接用 v-on 来监听子组件触发的事件,需跟子组件中的$emit组合使用。
3、效果
总结
相关推荐
liuxudong00 2020-11-19
wwzaqw 2020-11-11
lihaoxiang 2020-11-05
CrossingX 2020-11-04
xuegangic 2020-10-17
fanxiaoxuan 2020-09-17
安卓猴 2020-09-12
惠秀宝 2020-09-08
wwzaqw 2020-09-04
chenyingSunny 2020-09-04
是nsacer先森的 2020-09-03
bigname 2020-08-25
gaoqiang00 2020-08-24
灵均兰草 2020-08-20
xjp 2020-08-17
webgm 2020-08-16
wiky 2020-08-05
歆萌 2020-08-03
89961330 2020-07-28