2
0
mirror of https://github.com/esiur/iui.git synced 2025-06-27 17:33:12 +00:00
This commit is contained in:
2022-06-08 11:16:54 +03:00
parent 20eeb93edf
commit 0e275faa81
3 changed files with 29 additions and 19 deletions

View File

@ -18,7 +18,6 @@ export default class IUIElement extends HTMLElement {
}
this._register("data");
this._register("rendered");
}
static get moduleName(){
@ -58,7 +57,7 @@ export default class IUIElement extends HTMLElement {
this._data = value;
this._emit("data", {data: value});
await IUI.render(this, value);
this._emit("rendered", {data: value});
}