组件通信
完整代码:Github
一、父子组件通信:props 和 $emit
父组件向子组件传值:props
(1)父组件发送
new Vue({
el: '#app',
data: {
posts: [
{ id: 1, title: 'My journey with Vue' },
{ id: 2, title: 'Blogging with Vue' },
{ id: 3, title: 'Why Vue is so fun' }
]
}
})
<div id=
原创
2020-07-22 10:02:27 ·
1384 阅读 ·
0 评论