You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the big breaking changes in Vue 3 is the removal of the "filters" feature (details). We mainly used this for formatting dates, using a filter provided by the vue-moment plugin.
Alternatives:
Use a computed property to process data for display; this has the benefit of caching the results and should theoretically improve render times (although in practice it's probably not noticeable)
Per the docs, it's possible to sort of re-implement it manually using globalProperties, but the usage syntax wouldn't quite be the same.
Marking this as a potential good-first-issue because it should be pretty straightforward to identify and address all of these. I'll try to do a pass later and flag any that may need further thought.
The text was updated successfully, but these errors were encountered:
One of the big breaking changes in Vue 3 is the removal of the "filters" feature (details). We mainly used this for formatting dates, using a filter provided by the
vue-moment
plugin.Alternatives:
globalProperties
, but the usage syntax wouldn't quite be the same.Marking this as a potential good-first-issue because it should be pretty straightforward to identify and address all of these. I'll try to do a pass later and flag any that may need further thought.
The text was updated successfully, but these errors were encountered: