Menu
×
×
Correct!
Exercise:What must we write in a component so that it receives data sent via the 'fish-name' attribute from App.vue as a prop?
<script>
export default {
props: [
'fishName'
]
}
</script>
Not CorrectClick here to try again. Correct!Next ❯<script> export default {: [ ' ' ] } </script> |