mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-12-26 09:42:28 +08:00
Compare commits
2 commits
95ab7d1cff
...
b414c1add4
Author | SHA1 | Date | |
---|---|---|---|
|
b414c1add4 | ||
|
d715376317 |
1 changed files with 13 additions and 0 deletions
|
@ -54,6 +54,19 @@ const sections = [
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Time zone',
|
||||
information: [
|
||||
{
|
||||
label: 'Time zone name',
|
||||
value: computed(() => Intl.DateTimeFormat().resolvedOptions().timeZone),
|
||||
},
|
||||
{
|
||||
label: 'UTC offset',
|
||||
value: computed(() => `${new Date().getTimezoneOffset()} minutes`),
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue