You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expressions in parentheses correspond to data in the object
let data = {
one : 'one string',
two : 'two string'
}
// index.html
<div id="test">
<div>{{ one }}</div>
<div>{{ two }}</div>
</div>
// after compile
<div id="test">
<div>one string</div>
<div>two string</div>
</div>