add demo application (benchmark)

This commit is contained in:
Géry Debongnie
2019-03-18 11:35:03 +01:00
parent 050025a922
commit cf289323c8
10 changed files with 175 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
import { App } from "./app.js";
import { Counter } from "./counter.js";
document.addEventListener("DOMContentLoaded", function() {
const env = {
qweb: new odoo.core.QWeb()
};
const app = new App(env, { initialState: 13 });
app.mount(document.body);
});