I have a component like this: ```vue @Component({ watch: { something (val) { this.anotherData = 'ghijk' } } }) export default class LoginPage extends Vue { private something = '1234'; private anotherData = 'abdef'; } ``` And I receive the following TypeScript error: ``` Property 'anotherData' does not exist on type 'Vue'.Vetur(2339) ``` How can I access `this.anotherData` from `watch` inside decorator? Is this possible with this library?