AUR0199
Error Message
Description
Common Scenarios
<!-- ❌ user is null/undefined -->
<template>
<input value.bind="user.name">
</template>export class MyVm {
user: { name: string } | null = null;
}Solutions
Troubleshooting
Last updated
Was this helpful?