Is it possible to add 6 months to a date and use from now in a single line of code with Vue Moment
I was thinking something like this:
date | moment('add', '6 months', 'DD/MM/YYYY') | moment('from', 'now')
Or this
date | moment('from', 'now', 'add', '6 months')
But these methods didn't work, any ideas? Is it even possible?