google / angular_node_bind.dart

Utilities to allow Angular templates to use Node.bind()
BSD 3-Clause "New" or "Revised" License
26 stars 13 forks source link

Angular Node Bind

Utilities to allow Angular templates to use Node.bind().

NodeBindDirective

NodeBindDirective lets you use Node.bind() in an Angular app. This means that you can bind to custom elements, including Polymer elements. The bindings are declared by expressions in attribute values surrounded by double-square-brackets, like so:

<input value="[[ name ]]">

This declares that the expression name should be bound to the value property of the element using Node.bind(). The advantages of using Node.bind are: