vue里面组件的划分:
1、功能模块: 如 select pagenation ...
2、页面区域: 如 header footer sidebar ...
Vue组件的实现---components
1、app.vue里面引入组件
2、通过components 来注册组件
如:
import Header form './header'
import Footer form './footer'
new Vue({
data:{
isShow:true
},
components:[
Header,Footer
]
})
Vuejs组件之间的通信---props
1、先注册
2、props 是属性的意思
如:
//this is header.vue
new Vue({
data:{username:'xx'},
props:['msg'], //获得app.vue里面header的属性msg传过来的值
methods:{
doThis:function(){ //通过dothis 方法里面获得this.msg
console.log(this.msg)
}
}
})
//this is header.vue
<header msg='something interesting'></header> //msg属性可以传递任何值到app.vue
<footer></footer>
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦