源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

浅析vue component 组件使用

  • 时间:2020-03-12 09:13 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:浅析vue component 组件使用
[b]component 使用[/b] component的注册 [b]1.全局注册[/b] 使用用Vue.component('componentName',{template:'<div class="tem1">hello world</div>'})在初始化实例之前。 componentName自定义名称 在实例声明的作用域下中使用<componentName></componentName> 成功渲染效果就是 '<div class="tem1">hello world</div>
Vue.component('my-component',{ 
      template:'<div class="tem1">hello world</div>' 
    }  
[b]组件中的数据使用  [/b] component不能使用实例的data ,但是可以在component 使用data 声明变量,data的使用只能使用函数形式
Vue.component('my-component',{ 
      template:'<div class="tem1">hello world {{comdata}}</div>', 
      data:function(){return {comdata:'hehe'}} 
    });
[b]2.局部主持[/b] 在实例化的new Vue 中设置components
var app=new Vue({ 
      el:'#app', 
      components:{'example':{template:'<div>children template</div>'}} 
    }) 
[b]组件中的数据使用[/b]
var app=new Vue({ 
      el:'#app', 
      data:{num:220}, 
      components:{ 
        'example':{ 
          template:'<div>children template{{mydata}}</div>', 
          data:function(){return {mydata:' mydata=data'};} 
        } 
 
      } 
    })
注意:组件不能使用实例的data:{num:220}的参数会报错 组件中同样支持methods、computed等其他属性 不会冲突保持相对的独立 [b]这时候就必须考虑不同组件的数据通信问题[/b] vue js总结来说通过props down events up 来传输数据 给父级调用数据使用props声明,给子集调用使用events来声明 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程素材网。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部