摘要: 1、父组件向子组件传值//parent.vue<template> <div> <child :send-msg-to-child="toChildMsg"></child> </div></template><script>import child from './child.vue';expor 阅读全文