AUR0162
Error Message
Description
Example Trigger
<!-- ❌ import is not supported in binding expressions -->
<div textcontent.bind="import('x')"></div>Solution
export class MyVm {
value: unknown;
async binding() {
const mod = await import('./x');
this.value = mod.value;
}
}Troubleshooting
Last updated
Was this helpful?