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
}
},
provide() {
return {
fishName: this.fishName
}
}
Not CorrectClick here to try again. Correct!Next ❯data() { return { fishName: 'Turbot', count: 4 } },() { return { fishName: this.fishName } } |