Here is a simple example to consider:
import Vue from 'vue';
Vue.extend({
mounted() {
this.something = null;
}
});
https://i.sstatic.net/CiM9h.png
The above code is causing issues with TypeScript.
Is there a way to address this problem without adding my property to the data()
property?