AUR0227
Error Message
Description
Example Trigger
export class MyVm {
items = ['b', 'a'];
// ❌ Mutates state during evaluation (Array.prototype.sort is in-place)
get sortedItems() {
return this.items.sort();
}
}Correct Usage
Troubleshooting
Last updated
Was this helpful?