Clock update instantly + slower interval

This commit is contained in:
Jörn-Michael Miehe 2022-09-11 22:49:17 +00:00
parent 042f5f6b18
commit bdeaa9a561

View file

@ -14,12 +14,15 @@ export default class Clock extends Vue {
@Prop()
public format!: string;
public created(): void {
this.interval = setInterval((): void => {
private update(): void {
this.formatted = DateTime.now()
.setLocale(navigator.language)
.toFormat(this.format);
}, 1000);
}
public created(): void {
this.update();
this.interval = setInterval(this.update, 10000);
}
public beforeDestroy(): void {