Inside a polymer 1.0 custom element, I would like to iterate over an array an display its items with their content.
All I get is an [object Object] tag, without displaying its content. 
Is possible to achieve it without a computed function -like in this solution- iterating every item property and returning it as string?
My list iteration looks like:
<h4>My items:</h4>
<ol>
    <template is="dom-repeat" items="{{items}}">
      <li>{{item}}</li>
    </template>
</ol>
I did a plunker where you can reproduce it.
I saw there's an open issue referencing this feature.
 
     
     
    