I would like to bind multiple values to an array property in a Polymer component.
Looking for something like the following, where I'm getting the values of object1 and object2 from a two-way binding with first-element and second-element respectively, and would like third-element to receive both of those as an array, passed into object-array (obviously this doesn't work, but that's why I'm asking):
<!-- inside parent component definition -->
<first-element object='{{object1}}'></first-element>
<second-element object='{{object2}}'></second-element>
<!-- this is the syntax I thought might work -->
<third-element object-array='[ [[object1]], [[object2]] ]'></third-element>
I'm trying to avoid having to make a computed property to pass into object-array. Is something like this possible, or is it necessary to make the object array a separate property?