Prop State
Can I get the initial value from the parent component whether
Can the parent component modify whether
Can I set the default value inside the component Yes Yes
Can I modify the inside of the component no Yes
Can I set whether the initial value of a subcomponent
Can I modify whether the value of a subcomponent
Status state: Only relevant to the component itself, not to the parent component, child component
Property prop: The component cannot modify properties on its own, but can obtain properties from the parent component, which can modify the properties of the child component
Distinguishing attributes from state methods: Judging whether the component modifies data in the run, modifies it as a state, and does not modify it as a property
Http://www.jikexueyuan.com/course/1275_3.html?ss=1
"Go" react State and attribute differences