0👍
The context from within templating is only going to have variables that are declared on the Vue’s data. Your options are:
- Add a reference to moment to your Vue’s data.
- Add a method to your Vue that will do the moment calculation for you.
- Add a computed to do the moment calculation for you.
The last one is the recommended route.
Source:stackexchange.com