Vue2父子组件通信探究
Posted 发哥要做活神仙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue2父子组件通信探究相关的知识,希望对你有一定的参考价值。
父组件:
<template> <div id="secondcomponent"> <input type="" v-model="parentMsg"> <child :my-message="parentMsg"></child> </div> </template> <script> import child from ‘../components/Hello.vue‘ export default { data () { return { parentMsg: ‘父组件数据!可以根据input输入实时改变。‘ } }, components: { child } } </script>
子组件
<template> <div class="hello"> {{myMessage}} </div> </template> <script> export default { name: ‘child‘, props: [ ‘myMessage‘, ], mounted(){ console.log(this.myMessage); } } </script>
给子组件传递数据使用v-bind
动态绑定到子组件上!
以上是关于Vue2父子组件通信探究的主要内容,如果未能解决你的问题,请参考以下文章