mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
78a4550ebb
With this commit, we can now do this:
const SUBTEMPLATE = xml`<span><t t-esc="state.n"/></span>`
class Parent extends Widget {
static template = xml`<div><t t-call="${SUBTEMPLATE}"/></div>`
state = {n: 42};
}