1、父 -> 子。通过props
//father.vue
//child.vue父组件传过来的值:{ {msg}}
2、子 -> 父 通过emit事件触发父组件上的方法
//father.vue
//child.vue父组件传过来的值:{ {msg}}
本文共 532 字,大约阅读时间需要 1 分钟。
1、父 -> 子。通过props
//father.vue
//child.vue父组件传过来的值:{ {msg}}
2、子 -> 父 通过emit事件触发父组件上的方法
//father.vue
//child.vue父组件传过来的值:{ {msg}}
转载于:https://www.cnblogs.com/zengfp/p/9621485.html