Works with:
This mixin will create a computed property with a Moment.js instance. The computed property will be updated at a given interval to stay up to date.
npm install @skyrpex/now
<template>
<div>
<!-- Print the current time, and update each second. -->
<p>{{ now }}</p>
</div>
</template>
<script>
import now from '@skyrpex/now';
export default {
mixins: [
// Will inject a 'now' computed property
now({ /* options... */ }),
],
};
</script>
<template>
<div>
<!-- You can use any Moment.js method -->
<p>{{ now.from(createdAt) }}</p>
</div>
</template>
<script>
import moment from 'moment';
import now from '@skyrpex/now';
export default {
mixins: [now()],
data: () => ({
createdAt: moment([2007, 0, 28]),
}),
};
</script>
import now from '@skyrpex/now';
now({
name: 'now', // Name of the computed property
interval: 1000, // Update interval
});