加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

浅析vue component 组件使用

发布时间:2020-12-17 03:03:13 所属栏目:百科 来源:网络整理
导读:component 使用 component的注册 1.全局注册 使用用Vue.component('componentName',{template:' '})在初始化实例之前。 componentName自定义名称 在实例声明的作用域下中使用 成功渲染效果就是 ' ' } 组件中的数据使用 component不能使用实例的data ,但是可

component 使用

component的注册

1.全局注册

使用用Vue.component('componentName',{template:'

'})在初始化实例之前。

componentName自定义名称

在实例声明的作用域下中使用 成功渲染效果就是 '

' }

组件中的数据使用

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

',data:function(){return {comdata:'hehe'}} });

2.局部主持

在实例化的new Vue 中设置components

children template
'}} })

组件中的数据使用

children template{{mydata}}
',data:function(){return {mydata:' mydata=data'};} }
  } 
})</pre>

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

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

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

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

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

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读