raffaeleiavazzo.hashnode.devHow can I use a child component in the parent component?I have this situation: Parent component(Parent.vue): <template> ........ </template> <script> export default { name: 'Parent' ........... </script Child component (Child.vue): <template> ........ </template> <script> export default { name: 'Child' ...Sep 25, 2020·1 min read