Given a List<Element> elements
, is it possible to render the elements in the template, like this?
<template repeat="{{element in elements}}">
{{element.SOMETHING}}
</template>
I'd want it to observe the list too, so that it would add and remove elements as the list changes.