admin管理员组文章数量:1348070
I'm using vuetify calendar with type week and it shows time in 12 hour format with AM and PM. How do i change that to 24 hour format?
I looked at the documentation and didn't find much, except that u can pass interval-format prop that expects a function. Also found a function at vuetify github.
<v-calendar
:now="today"
:value="today"
color="primary"
locale="et"
type="week"
:interval-format="intervalFormat"
>
</v-calendar>
methods: {
intervalFormat() {
const longOptions = { timeZone: 'UTC', hour12: true, hour: '2-digit', minute: '2-digit' }
const shortOptions = { timeZone: 'UTC', hour12: true, hour: 'numeric', minute: '2-digit' }
const shortHourOptions = { timeZone: 'UTC', hour12: true, hour: 'numeric' }
return longOptions
}
}
I wanted 24 hour format but it's still 12 hour format
I'm using vuetify calendar with type week and it shows time in 12 hour format with AM and PM. How do i change that to 24 hour format?
I looked at the documentation and didn't find much, except that u can pass interval-format prop that expects a function. Also found a function at vuetify github.
<v-calendar
:now="today"
:value="today"
color="primary"
locale="et"
type="week"
:interval-format="intervalFormat"
>
</v-calendar>
methods: {
intervalFormat() {
const longOptions = { timeZone: 'UTC', hour12: true, hour: '2-digit', minute: '2-digit' }
const shortOptions = { timeZone: 'UTC', hour12: true, hour: 'numeric', minute: '2-digit' }
const shortHourOptions = { timeZone: 'UTC', hour12: true, hour: 'numeric' }
return longOptions
}
}
I wanted 24 hour format but it's still 12 hour format
Share Improve this question edited Jun 18, 2019 at 11:38 Ronnco asked Jun 17, 2019 at 10:56 RonncoRonnco 1311 silver badge8 bronze badges2 Answers
Reset to default 8Got it.
intervalFormat(interval) {
return interval.time
}
Add this to your v-calendar:
:interval-format="intervalFormat"
Create a new function equal to this:
intervalFormatter(locale, getOptions) {
return locale.time;
}
本文标签: javascriptHow to change vuetify calendar interval format to 24 hoursStack Overflow
版权声明:本文标题:javascript - How to change vuetify calendar interval format to 24 hours? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743845525a2549046.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论