企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
父组件给子组件传值 1.父组件调用子组件的时候,绑定动态属性 ``` <c_header :title="title"></c_header> ``` 2.在子组件里面通过props接收父组件传过来的数据 ``` props:[ 'title' ] props:{ 'title':String } ``` 3.直接在子组件里面使用 父组件主动获取子组件的数据和方法 1.调用子组件的时候定义一个ref ``` <c_header ref="header"></c_header> ``` 2.在父组件里面通过 ``` this.$refs.header.属性 this.$refs.header.方法 ``` 子组件主动获取父组件的数据和方法 ``` this.$parent.属性 this.$parent.方法 ```