mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 10:34:07 -04:00
19 lines
434 B
Vue
19 lines
434 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>
|