2
0
mirror of https://github.com/esiur/iui.git synced 2025-12-14 02:20:25 +00:00
This commit is contained in:
2021-12-18 16:25:51 +03:00
parent e52b89fb4d
commit f57c1b4bc5
9 changed files with 832 additions and 496 deletions

View File

@@ -1,5 +1,6 @@
import {IUI, iui} from "./Core/IUI.js";
import "./Core/IUIElement.js";
import './Core/App.js';
@@ -40,6 +41,7 @@ import './UI/Grid.js';
import './UI/Location.js';
import './UI/CodePreview.js';
import Modifiable from "./Data/Modifiable.js";
window.addEventListener("beforeprint", (e)=>{
let viewRoute = router.current.viewRoute;
@@ -56,9 +58,9 @@ window.addEventListener("afterprint", (e)=>{
window.addEventListener("load", async function () {
await IUI.create(document.body);
await IUI.created(document.body);
//if (window.app != null) {
// window.app._emit("load", { app: window.app });
// }
});
window.iui = iui;
window.iui = iui;
window.Modifiable = Modifiable;