[TimeInterval] Refresh value on mounted.

This commit is contained in:
Fabio Manganiello 2023-12-16 23:27:22 +01:00
parent d4543c2fb7
commit 1bd2361a3d
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -104,6 +104,10 @@ export default {
return value == null ? null : value / this.multiplier
},
},
mounted() {
this.duration = this.toUnit(this.value)
},
}
</script>