AUR0103
Error Message
Description
Cause
Solution
import { Aurelia, StandardConfiguration } from 'aurelia'; import { DateFormatValueConverter } from './date-format-converter'; // Example Aurelia .register(StandardConfiguration) .register(DateFormatValueConverter) // Register here .app(MyApp) .start();import { customElement } from 'aurelia'; import { CurrencyFormatValueConverter } from './currency-format-converter'; // Example @customElement({ name: 'my-product', template: `<p>Price: \${ price | currencyFormat }</p>`, dependencies: [CurrencyFormatValueConverter] // Register here }) export class MyProduct { price = 123.45; }
Example
Debugging Tips
Last updated
Was this helpful?