0👍
Sorry if this is too late.
Aren’t you missing the typing?
data(): { message: string } {
return {
message: 'initial value',
};
},
The same goes for the method.
samplefunction(): void {
this.message = 'hello world'
}
Source:stackexchange.com