Last active
May 15, 2019 18:50
-
-
Save Olegas/163f7e6db9bc9fabf5653867102d9c27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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