[REF] qweb: split code into 3 files

closes #84
This commit is contained in:
Géry Debongnie
2019-05-06 12:34:36 +02:00
parent b9591cfecd
commit bd29e4f761
9 changed files with 1314 additions and 1276 deletions
+6 -1
View File
@@ -1,8 +1,13 @@
export { Component } from "./component";
export { EventBus } from "./event_bus";
export { Observer } from "./observer";
export { QWeb } from "./qweb";
import "./qweb_directives";
import "./qweb_extensions";
export { QWeb } from "./qweb_core";
export { connect, Store } from "./store";
import * as _utils from "./utils";
export const utils = _utils;