Within the vuex store, I am attempting to initialize a state called _token. However, when I try to access the property within the same class, I am encountering an error message stating that the setter for _token is not defined. Can anyone shed light on why only the getter is accessible?
export default class Api extends VuexModule {
public _token = '';
@Action
public async [VuexActionsApi.VerifyUser](data: any): Promise<IResponseState> {
const vuexInstance = this;
// The following assignment is causing issues
vuexInstance._token = "test";
}