The parent component passes an array to the child component. This data needs to be called in the child component. How to pass it?
1. The child component uses props to receive the data of the parent component and cannot be used in js.
2. Use the wacth method to monitor and not execute it at all.
Please answer from the master. Thank you!
擁有18年軟件開發(fā)和IT教學經(jīng)驗。曾任多家上市公司技術(shù)總監(jiān)、架構(gòu)師、項目經(jīng)理、高級軟件工程師等職務。 網(wǎng)絡人氣名人講師,...
You should be talking about the child component modifying the data passed by the parent component.
vue2 now has a one-way data flow, and child components are not allowed to modify the data of the parent component. Please see the documentation for details.
Link: https://cn.vuejs.org/v2/guide... After clicking the link, search for One-way data flow
The document also has detailed instructions on how to handle the situation when a child component wants to operate the data of the parent component.