ngNonBindable
The ngNonBindable
tells Angular not to compile or bind the contents of the current DOM element.
Source
<div>{{ 1 + 1 }}</div>
<div ngNonBindable>{{ 1 + 1 }}</div>
Result
2
{{ 1 + 1 }}
The ngNonBindable
tells Angular not to compile or bind the contents of the current DOM element.
<div>{{ 1 + 1 }}</div>
<div ngNonBindable>{{ 1 + 1 }}</div>