摘要:
父访问子:this.$children或this.$refs.ref(vue3中children已废弃) 子访问父:this.$parent和this.$root 父访问子 this.$refs.bb.name 子访问父 this.$root.message 阅读全文
摘要:
子传父 vue子传父使用$emit传值 子组件: <template> <div> <button @click="toParent">点击传到父级</button> </div> </template> <script> export default { name: 'child', method 阅读全文