This commit is contained in:
50
node_modules/vitepress/dist/client/theme-default/components/VPDocFooterLastUpdated.vue
generated
vendored
Normal file
50
node_modules/vitepress/dist/client/theme-default/components/VPDocFooterLastUpdated.vue
generated
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, computed, watchEffect, onMounted } from 'vue'
|
||||
import { useData } from '../composables/data'
|
||||
|
||||
const { theme, page, lang } = useData()
|
||||
|
||||
const date = computed(
|
||||
() => new Date(page.value.lastUpdated!)
|
||||
)
|
||||
const isoDatetime = computed(() => date.value.toISOString())
|
||||
const datetime = ref('')
|
||||
|
||||
// set time on mounted hook to avoid hydration mismatch due to
|
||||
// potential differences in timezones of the server and clients
|
||||
onMounted(() => {
|
||||
watchEffect(() => {
|
||||
datetime.value = new Intl.DateTimeFormat(
|
||||
theme.value.lastUpdated?.formatOptions?.forceLocale ? lang.value : undefined,
|
||||
theme.value.lastUpdated?.formatOptions ?? {
|
||||
dateStyle: 'short',
|
||||
timeStyle: 'short'
|
||||
}
|
||||
).format(date.value)
|
||||
})
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<p class="VPLastUpdated">
|
||||
{{ theme.lastUpdated?.text || theme.lastUpdatedText || 'Last updated' }}:
|
||||
<time :datetime="isoDatetime">{{ datetime }}</time>
|
||||
</p>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.VPLastUpdated {
|
||||
line-height: 24px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--vp-c-text-2);
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.VPLastUpdated {
|
||||
line-height: 32px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user