produces 1 January 2019 rather than expected Jan, 2019.
Most other examples also either don't work or crash, for example {{ luxon.format('dd-MM-YY') }} gives [Vue warn]: Failed to resolve filter: luxon.format.
After reading the source code I discovered that the correct syntax was:
{{ '2019-01-01' | luxon:format('MMM, yyyy') }}
Isn't it time to update the documentation, or at least add a warning at the top of the page that the syntax is different in the latest version?
The top header example:
produces
1 January 2019
rather than expectedJan, 2019
.Most other examples also either don't work or crash, for example
{{ luxon.format('dd-MM-YY') }}
gives [Vue warn]: Failed to resolve filter: luxon.format.After reading the source code I discovered that the correct syntax was:
Isn't it time to update the documentation, or at least add a warning at the top of the page that the syntax is different in the latest version?