PronounsPage/components/DateWords.vue
2021-12-29 18:31:09 +01:00

19 lines
418 B
Vue

<template>
<span>
{{$t('calendar.date', {year: day.year, date: $t('calendar.dates.' + day.month, {day: day.day})})}}
<DateLocal :day="day" :inline="inline"/>
</span>
</template>
<script>
import DateLocal from '../data/calendar/DateLocal.vue';
export default {
components: { DateLocal },
props: {
day: { required: true },
inline: { type: Boolean },
},
};
</script>