浅析vue component 组件使用
component使用
component的注册
1.全局注册
使用用Vue.component('componentName',{template:'
componentName自定义名称
在实例声明的作用域下中使用
Vue.component('my-component',{
template:'helloworld component使用
component的注册
1.全局注册
使用用Vue.component('componentName',{template:'
componentName自定义名称
在实例声明的作用域下中使用
Vue.component('my-component',{
template:'helloworld 组件中的数据使用 
component不能使用实例的data,但是可以在component使用data声明变量,data的使用只能使用函数形式
Vue.component('my-component',{
template:'helloworld{{comdata}} 2.局部主持
在实例化的newVue中设置components
varapp=newVue({
el:'#app',
components:{'example':{template:'childrentemplate'}}
})
组件中的数据使用
varapp=newVue({
el:'#app',
data:{num:220},
components:{
'example':{
template:'childrentemplate{{mydata}}',
data:function(){return{mydata:'mydata=data'};}
}
}
})
注意:组件不能使用实例的data:{num:220}的参数会报错
组件中同样支持methods、computed等其他属性不会冲突保持相对的独立
这时候就必须考虑不同组件的数据通信问题
vuejs总结来说通过propsdowneventsup来传输数据
给父级调用数据使用props声明,给子集调用使用events来声明
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。