core-list-dart template how to bind to the model itself
问题 I'm using the <core-list-dart> element in my Polymer Dart application: <core-list-dart data="{{data}}"> <template> <span>{{name}}</span> </template> </core-list-dart> Data is an array of Foo where Foo is: class Foo { String name; ... } It is possible in the template refer to the Foo instance instead of his fields? Something like: <core-list-dart data="{{data}}"> <template> <foo-element foo="{{ITEM}}"></foo-element> </template> </core-list-dart> 回答1: From version 0.4.0 of core_elements the