Menu
×
×
Correct!
Exercise:There is a certain word we need to use to reach data properties from inside a method. What word is missing here?
data() {
return {
text: ''
}
},
methods: {
writeText() {
this.text = 'Hello World!'
}
}
Not CorrectClick here to try again. Correct!Next ❯data() { return { text: '' } }, methods: { writeText() {.text = 'Hello World!' } } |