I want to pass the data that I have to a variable to a Polymer component through an attribute.
This is the code:
<script> var item1 = { title: "Title 1", status: "accepted" }; </script> <bm-card item="{{item1}}" otherAttribute="hello">
Another attribute receives data in the user element, but the element does not arrive.
How can the item attribute be populated from item1 variable?
source share