// 父组件 <template> <div>我是父组件</div> <add-configuration :message="checkList" /> </template> import addConfiguration from ‘@/components/addConfiguration.vue‘ export default { components:{ addConfiguration }, data() { return { checkList: [] } }, methods:{ getList() { .... this.checkList= ... } } }
// 子组件 <template> <div>我是子组件</div> <div>我是父组件传递过来的数组{{message}}</div> </template> export default { props: { message: { type: Array, default: () => [] } }, data() { return { } } }
// 父组件 <template> <div>我是父组件</div> <add-configuration ref="configurationRef" /> </template> import addConfiguration from ‘@/components/addConfiguration.vue‘ export default { components:{ addConfiguration }, data() { return { } }, methods:{ getList() { this.$ref.transforFntoFather() } } }
// 子组件 <template> <div>我是子组件</div> </template> export default { data() { return { } }, methods:{ transforFntoFather() { .... } } }
// 父组件 <template> <div>我是父组件</div> <add-configuration @fatherMethod="initialData" /> </template> import addConfiguration from ‘@/components/addConfiguration.vue‘ export default { components:{ addConfiguration }, data() { return { } }, methods:{ initialData() { .... // 请求api接口返回数据 } } }
// 子组件 <template> <div>我是子组件</div> </template> export default { data() { return { configCategory:1 } }, mounted(){ this. getListData() } methods:{ getListData() { this.$emit(‘fatherMethod‘,this.configCategory) } } }
vue常见的三种组件通讯—props,$refs,this.$emit
原文:https://www.cnblogs.com/chandlerwong/p/14995167.html