Menu
×
×
Correct!
Exercise: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
}
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 54 exercises.
Are you sure you want to continue?