[Vuejs]-Typescript unsafe member access error in Vue when referring to property using "this."

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'
}

Leave a comment