I want to pass data that I have on a variable to a Polymer component via attribute.
This is the code:
<script>
var item1 = {
title: "Title 1",
status: "accepted"
};
</script>
<bm-card item="{{item1}}" otherAttribute="hello">
The otherAttribute gets the data on the custom element but item does not arrive.
How could item attribute be populated from the item1 variable ?