浅析vue component 组件使用

网络编程 2021-07-04 19:20www.168986.cn编程入门
本篇文章主要介绍了vue ponent 组件使用 ,长沙网络推广觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随长沙网络推广过来看看吧

ponent 使用

ponent的注册

1.全局注册

使用用Vue.ponent('ponentName',{template:'<div class="tem1">hello world</div>'})在初始化实例之前。

ponentName自定义名称

在实例声明的作用域下中使用<ponentName></ponentName> 成功渲染效果就是 '<div class="tem1">hello world</div>

Vue.ponent('my-ponent',{ 
      template:'<div class="tem1">hello world</div>' 
    }  

组件中的数据使用 

ponent不能使用实例的data ,但是可以在ponent 使用data 声明变量,data的使用只能使用函数形式

Vue.ponent('my-ponent',{ 
      template:'<div class="tem1">hello world {{data}}</div>', 
      data:function(){return {data:'hehe'}} 
    });

2.局部主持

在实例化的new Vue 中设置ponents

var app=new Vue({ 
      el:'#app', 
      ponents:{'example':{template:'<div>children template</div>'}} 
    }) 

组件中的数据使用

var app=new Vue({ 
      el:'#app', 
      data:{num:220}, 
      ponents:{ 
        'example':{ 
          template:'<div>children template{{mydata}}</div>', 
          data:function(){return {mydata:' mydata=data'};} 
        } 
 
      } 
    })

注意:组件不能使用实例的data:{num:220}的参数会报错

组件中同样支持methods、puted等其他属性 不会冲突保持相对的独立

这时候就必须考虑不同组件的数据通信问题

vue js总结来说通过props down events up 来传输数据

给父级调用数据使用props声明,给子集调用使用events来声明

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by