Vue 组件通信方式

70 阅读1分钟

1.props、$emit

2.parent、children、ref

3.$attrs

// 父组件
<div-com :person="person" :c="c"></div-com>
// c: "this is C",

// 子组件 div-com
<com-c  v-bind="$attrs"></com-c>

// 孙组件
<div>
     C:{{c}}
</div>
================
c: {
    type: String
}