The 'fishName' data property is provided from App.vue so that it is available in this component.
How can we inject the 'fishName' in this component?
<script>
export default {
inject: @(14)
}
</script>
<script>
export default {
inject: ['fishName']
}
</script>
<script>
export default {
inject: ["fishName"]
}
</script>