[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: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 4 additions and 0 deletions

View File

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