标签:组件通信

Vue中组件通信

props ⽗给⼦传值 // child props: { msg: String } // parent <HelloWorld msg='Welcome to Your Vue.js App'/> ⾃定义事件 ⼦给⽗传值 // child this...