How 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'
...
raffaeleiavazzo.hashnode.dev1 min read