码迷,mamicode.com
首页 > 其他好文 > 详细

vue 父组件调用子组件数据

时间:2019-01-23 17:25:12      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:child   div   v-on   har   使用   asc   click   body   method   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
        <div class="" id="myVue">
            <my-component>
            </my-component>
        </div>
        
        <!--子组件-->
        <template id="child"  >
            <div id="">
                <button v-on:click=‘senddata‘>传数据到父组件</button>
            </div>
        </template>
        <!--父组件-->
        <template id="father">
            <div>
                <h3>我是:{{str}}</h3>
                <mycomponent-child  v-on:showstrr="shouchilddata"></mycomponent-child>
            </div>
        </template>
    </body>
    <script type="text/javascript" charset="utf-8">
        /*子组件传数据到父组件
         * 1:子组件加事件eg:v-on:click=‘senddata‘
         * 2:senddata方法中用this.$emit设置监听事件eg:this.$emit(‘showstrr‘,this.strr);  
         *    showname是时间名,this.strr传入父组件的数据
           3.父组件监听子组件触发的showname事件,然后调用shouchilddata方法获取子组件数据
         * */
        //注vue使用$emit时传入的事件名称只能使用小写,不能使用大写的驼峰规则命名
        /*子组件*/
        var child={
            template:"#child",
            data:function(){
                return{
                    strr:"我是子组件数据"
                }
            },
            methods:{
                senddata:function(){
                     this.$emit(‘showstrr‘,this.strr);
                }
            }
            
        }
        /*父组件*/
        var father={
            template:"#father",
            data:function(){
                return{
                    str:"我是父组件数据"
                }
            },
            methods:{
                shouchilddata:function(data){
                    alert("父组件:"+data)
                },
            },
            components:{
                "mycomponentChild":child
            }
        }
        vm=new Vue({
            //el:"#myVue",
            components:{
                "myComponent":father
            }
        }).$mount(‘#myVue‘);
        
    </script>
</html>

vue 父组件调用子组件数据

标签:child   div   v-on   har   使用   asc   click   body   method   

原文地址:https://www.cnblogs.com/zyb-722/p/10309374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!