In vue, after the parent component is instantiated, will the child component also be instantiated?
If not, how to instantiate the subcomponent
Vue’s components are tree-shaped. In other words, when the parent component is instantiated, the child component will also be instantiated.
Vue’s components are tree-shaped.
In other words, when the parent component is instantiated, the child component will also be instantiated.