Files
owl/examples/demo/main.js
T
2019-03-18 14:26:33 +01:00

11 lines
266 B
JavaScript

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);
});