vue组件

1、全局组件

  Vue.component(name,{})

    第一个参数:组件名字      

          三种名字用法  :

            1、Vue.component(hello,{

                template: <h1>我是第一种命名方法</h1>

              })

              调用   <hello></hello>

             

            2、Vue.component(myHello,{

                template: <h1>我是第二种命名方法myhello</h1>

              })

              调用   <my-hello></my-hello>

            

            3、Vue.component('your-hello',{

                template: <h1>我是第三种命名方法yourhello</h1>

              })

              调用   <your-hello></your-hello>

2、局部组件

    

 

    调用 : <my-hello></my-hello>

        局部组件中的子组件

          

           直接调用  :<my-hello></my-hello>

              在子组建中调用数据:

                  

                  注意:子组件中data必须是函数   并且有return  返回值

                  父组件传递值给子组件(使用props):

                

                子组件传递信息给父组件用自定义事件:

                     

                两个全局组件相互嵌套问题(插槽slot):

                  两个插槽对应位置的name和自定义标签slot一一对应

               

 

posted on 2017-10-24 19:03  菜鸟要上天。  阅读(211)  评论(0编辑  收藏  举报