mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
18 lines
543 B
Markdown
18 lines
543 B
Markdown
|
|
# 🦉 Environment 🦉
|
||
|
|
|
||
|
|
An environment is an object which contains a [`QWeb` instance](qweb.md). Whenever a root component is created, it is assigned an environment. This environment
|
||
|
|
is then automatically given to each sub component (and accessible in the `this.env` property).
|
||
|
|
|
||
|
|
```
|
||
|
|
Root
|
||
|
|
/ \
|
||
|
|
A B
|
||
|
|
```
|
||
|
|
|
||
|
|
This way, all components share the same `QWeb` instance.
|
||
|
|
|
||
|
|
Note: some additional information can be found here:
|
||
|
|
|
||
|
|
- [What should go into an environment?](../learning/environment.md)
|
||
|
|
- [Customizing an environment](config.md#env)
|