{{ accountBalance | currencyUSD }}
+ + + +``` + +While this seems like a convenience, it requires a custom syntax that breaks the assumption of expressions inside of curly braces being "just JavaScript," which has both learning and implementation costs. + +## 3.x Update + +In 3.x, filters are removed and no longer supported. Instead, we recommend replacing with method calls or computed properties instead. + +Using the example above, here is one example of how it could be implemented. + +```html + +{{ accountInUSD }}
+ + + +``` + +## How to Migrate + +Instead of using filters, we recommend replacing them with computed properties or methods.