Which configuration option is needed in the code below so that the fish name 'Turbot' becomes available
to other components?
data() {
return {
fishName: 'Turbot',
count: 4
}
},
@(7)() {
return {
fishName: this.fishName
}
}
data() {
return {
fishName: 'Turbot',
count: 4
}
},
provide() {
return {
fishName: this.fishName
}
}