mixit/src/components/time/TimerMixin.ts

15 lines
247 B
TypeScript
Raw Normal View History

2019-05-01 15:07:08 +00:00
import { Component, Vue } from 'vue-property-decorator'
@Component
export default class TimerMixin extends Vue {
now = Date.now()
created() {
const self = this
setInterval(() => {
self.now = Date.now()
}, 30 * 1000)
}
}