We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When a function is set up to a property(e.g. Label's text property), the function will be executed twice. For example: HTML
<Label [text]="testBinding()" textWrap="true"></Label>
TypeScript
public testBinding(){ console.log("testBinding"); return "test test"; }
Archive.zip