This may be fairly simple question, and though I can find some simple examples, I cannot find documentation on this on the Polymer Project website. In the template for an element, you may use:
<content select="value"></content>
My question is what are valid values for the select attribute. Is it simply an element? Can it be any simple CSS selector (such as "#id"
)? Can it be a bound value ("{{data}}"
)?
While, ultimately, I'm just looking for the answer, I would also gladly accept a document citation or URL.