Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
467 views
in Technique[技术] by (71.8m points)

父组件传值给子组件

子组件
image.png
父组件数据
image.png
image.png

我在子组件如何接收这个数据呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

https://cn.vuejs.org/v2/guide...

父组件内:

<ReceiptModal :selection-rows="selectionRows"/>

子组件内:

props: {
    selectionRows: {
        type: Array
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...