How can I use a child component in the parent component?
Sep 25, 2020 · 1 min read · 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' ...
Join discussion