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

vue组件

时间:2017-10-24 20:45:55      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:http   template   用法   bsp   span   第一个   并且   images   函数   

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  返回值

 

       

vue组件

标签:http   template   用法   bsp   span   第一个   并且   images   函数   

原文地址:http://www.cnblogs.com/study-web/p/7725239.html

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