[Vuejs]-Working with Vue and Typescript – getting two "Property … does not exist on type

1👍

The lexical scope of this is not bound to the component but the function, use a fat arrow:

methods: {
    asyncDataStatus_fetched: () => {
}

Leave a comment