remove unused onMounted
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
William Buezas 2024-05-15 10:31:33 -03:00
parent f3a5ebbcec
commit 5677a1af1b
1 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
import { ref, computed, onMounted } from 'vue'; import { ref, computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { date } from 'quasar'; import { date } from 'quasar';
@ -104,8 +104,6 @@ const isToday = (timestamp) => {
const calendarHeaderTitle = computed(() => { const calendarHeaderTitle = computed(() => {
return `${weekdayStore.getLocaleMonths[props.month - 1].locale} ${props.year}`; return `${weekdayStore.getLocaleMonths[props.month - 1].locale} ${props.year}`;
}); });
onMounted(() => {});
</script> </script>
<template> <template>