FMHYedit/.vitepress/theme/PostLayout.vue

30 lines
572 B
Vue
Raw Normal View History

2023-12-31 06:57:10 +00:00
<script setup lang="ts">
2024-01-25 16:32:45 +00:00
import { useData } from 'vitepress'
import Authors from './components/Authors.vue'
2023-12-31 06:57:10 +00:00
const props = defineProps<{
2024-01-25 16:32:45 +00:00
authors: string[]
}>()
2023-12-31 06:57:10 +00:00
const formatDate = (raw: string): string => {
2024-01-25 16:32:45 +00:00
const date = new Date(raw)
return date.toLocaleDateString('en-US', {
month: 'short',
day: 'numeric'
})
}
2023-12-31 06:57:10 +00:00
2024-01-25 16:32:45 +00:00
const { frontmatter } = useData()
2023-12-31 06:57:10 +00:00
</script>
<template>
<h3>
{{ frontmatter.title }}
</h3>
2024-01-25 16:32:45 +00:00
<span>
{{ frontmatter.description }} {{ formatDate(frontmatter.date) }}
</span>
2023-12-31 06:57:10 +00:00
<Authors :authors="props.authors" />
</template>