Always show : web.assets_web.min.js:1139 Component 'ClickerValue' does not have a static props description Warning
And clicker_model's toJSON() method is defined but never to use, so if we use the original solution like :
start(env, services) {
const localState = migrate(JSON.parse(browser.localStorage.getItem("clickerState")));
const clickerModel = localState ? ClickerModel.fromJSON(localState): new ClickerModel();
setInterval(() => {
browser.localStorage.setItem("clickerState", JSON.stringify(clickerModel))
}, 10000);
......
will throw an error,seem like because the [this.bus] is not be delete and will conflict with migrationstep(step 20)?