摘要: Props: props用以从父组件接收数据: 使用: Vue.component('child',{ props:['msg'], template:'<span>{{msg}}</span>' }); 声明: <child msg='hello!'></child> // 字面量语法 <chil 阅读全文
posted @ 2017-11-28 09:38 青青子衿619 阅读(294) 评论(0) 推荐(0) 编辑
摘要: this.$parent // 子组件访问父组件 this.$root // 访问根实例 this.$children // 父组件的所有子元素 *一般是不建议在子组件中修改父组件的状态的 阅读全文
posted @ 2017-11-28 09:36 青青子衿619 阅读(186) 评论(0) 推荐(0) 编辑