2
0
mirror of https://github.com/esiur/iui.git synced 2026-05-05 11:58:42 +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
+1 -2
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});
}
+1 -1
View File
@@ -7,7 +7,7 @@ export default IUI.module(class Include extends IUIElement
constructor()
{
super();
this.refs = new RefsCollection();
this.refs = new RefsCollection(this);
}
get src(){