vue 子组件向父组件传值方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 子组件向父组件传值方法相关的知识,希望对你有一定的参考价值。
参考技术A 子组件注册触发事件,父组件注册触发子组件事件后的方法写在method里面
父组件这么写
<component-a
v-on:child-say="listenToMyBoy"></component-a>
<p>Do
you
like
me?
childWords</p>
methods:
listenToMyBoy:
function
(somedata)
this.childWords
=
somedata
子组件component-a这么写
<button
v-on:click="onClickMe">like!</button>
methods:
onClickMe:
function()
this.$emit('child-say',this.somedata);
以上这篇vue
子组件向父组件传值方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:vue父组件向子组件动态传值的两种方法浅谈Vue父子组件和非父子组件传值问题Vue中父组件向子组件通信的方法vue2.0
父组件给子组件传递数据的方法
vue 子组件向父组件传值方法
参考技术A 子组件注册触发事件,父组件注册触发子组件事件后的方法写在method里面
父组件这么写
<component-a
v-on:child-say="listenToMyBoy"></component-a>
<p>Do
you
like
me?
childWords</p>
methods:
listenToMyBoy:
function
(somedata)
this.childWords
=
somedata
子组件component-a这么写
<button
v-on:click="onClickMe">like!</button>
methods:
onClickMe:
function()
this.$emit('child-say',this.somedata);
以上这篇vue
子组件向父组件传值方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:vue父组件向子组件动态传值的两种方法浅谈Vue父子组件和非父子组件传值问题Vue中父组件向子组件通信的方法vue2.0
父组件给子组件传递数据的方法
以上是关于vue 子组件向父组件传值方法的主要内容,如果未能解决你的问题,请参考以下文章