组件之间使用Prop传递数据

Posted zhishaofei3

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组件之间使用Prop传递数据相关的知识,希望对你有一定的参考价值。

<div id="example">
    <father></father>
</div>

<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script type="text/javascript">

    Vue.component(child, {
        props: [myMessage],
        template: <div>{{myMessage}}<input v-model="counterMessage"></div>,
        computed: {
            counterMessage: function () {
                return this.myMessage.trim().toLowerCase()
            }
        }
    })

    Vue.component(father, {
        template:             <div>                <div>{{parentMsg}}</div><br><child :my-message="parentMsg"></child>            </div>,
        data: function () {
            return {
                parentMsg:  a22 asdasdasd sdasdAS asdAS 
            }
        }
    });

    new Vue({
        el: #example
    })

</script>

 

以上是关于组件之间使用Prop传递数据的主要内容,如果未能解决你的问题,请参考以下文章

使用导航从工具栏菜单项单击在片段之间传递数据 - Kotlin

组件:使用Prop下发数据

如何在两个片段之间传递位图? (我正在使用 Android 导航组件)

使用-Prop-传递数据(父组件通过 props 向下传递数据给子组件)

vue.js学习笔记— 父子组件之间通信的第一种方式 props 和 $emit

Vue 组件之间传参!