mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-02 17:44:37 -04:00
19 lines
440 B
Vue
19 lines
440 B
Vue
<template>
|
|
<span>
|
|
<Spelling :text="$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>
|