Each emitted loop gets the same group id. However,...
# compose
c
Each emitted loop gets the same group id. However, you can introduce a key that is combined with the source property to introduce a group specific key. The
Key
component can be used for that. For example,
Copy code
for (item in items) {
  Key(item) {
    Item(item)
  }
}