一、Vue 组件间数据交互
### 父组件传值给子组件 ###
1. 组件内部通过props接收传递过来的值
- 如定义一个全局的子组件
Vue.component('menu-item', {
props: ['title', 'content'],
data: function () {
return {
msg: '子组件本身的数据'
}
},
template: '<div>{
{msg + "----" + title + "-----" + content}}</div>'
});