We use the @nuxtjs/moment (https://www.npmjs.com/package/@nuxtjs/moment) package in our nuxt application.
In our app we want to display GMT-timestamps in the users timezone like so:
<div>{{ $moment("2019-04-25 19:01:03").fromNow() }}</div>
But on my PC the result is just
2 hours ago
because I'm based in germany.
Is there any way to set the default timezone to GMT so that the function works correctly? I've looked into moment-timezone but have no idea how to implement that to a nuxt application.