Skip to content

Instantly share code, notes, and snippets.

@Olegas
Last active May 15, 2019 18:50
Show Gist options
  • Select an option

  • Save Olegas/163f7e6db9bc9fabf5653867102d9c27 to your computer and use it in GitHub Desktop.

Select an option

Save Olegas/163f7e6db9bc9fabf5653867102d9c27 to your computer and use it in GitHub Desktop.
class My extends Control {
_state = 0;
_beforeMount(options) {
// первичная инициализация
this._state = options.value;
}
_beforeUpdate(newOptions) {
if (this._options !== newOptions) {
// Пришли новые опции - обновим стейт
this._state = newOptions.value;
}
}
_onClick() {
// вызовет _beforeUpdate но опции не поменялись
this._state++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment