Vue momentjs update relative time in real time Vue momentjs update relative time in real time vue.js vue.js

Vue momentjs update relative time in real time


Since moment().fromNow() isn't reactive so you will not see any change,to deal with we fix an old time property which should be initialized in the created hook this.oldTime = new Date();, and set a time interval with 1s, based on the old time property we call moment(this.old).fromNow(); to update our property ago.