AUR0210
Error Message
Description
Common Scenarios
<!-- ❌ items is an unexpected type -->
<template>
<div repeat.for="item of items">${item}</div>
</template>export class MyVm {
// e.g. accidentally assigned an object instead of an array
items: unknown = { a: 1 };
}Solutions
Troubleshooting
Last updated
Was this helpful?