美文网首页
Vuejs组件

Vuejs组件

作者: 老于头子 | 来源:发表于2017-11-28 14:56 被阅读0次

    component

      注册组件
            Vue.component('my-com',{
                  template:",data(){return{XXX:XXX}}
            });
            ...,
            components:{
                xxx:{
                  template:'',data(){return{XXX:XXX}}
                }
            },
            ...
    

    组件之间数据传递

        1.父组件给子组件数据
        2.子组件给父组件数据
                  $.emit('name',xxx) 发射
                  $.on('name',function(xxx){}) 接收
        3.同级之间组件传递数据

    相关文章

      网友评论

          本文标题:Vuejs组件

          本文链接:https://www.haomeiwen.com/subject/yitebxtx.html