1
0

chore: remove date mixins

This commit is contained in:
Dominik Pschenitschni
2022-06-23 02:58:00 +02:00
parent 332acf012c
commit b0ee316a26
14 changed files with 43 additions and 24 deletions

View File

@ -110,10 +110,10 @@
</template>
<script lang="ts" setup>
import {format} from 'date-fns'
import { formatDate } from '@/helpers/time/formatDate'
import BaseButton from '@/components/base/BaseButton.vue'
const exampleDate = format(new Date(), 'yyyy-MM-dd')
const exampleDate = formatDate(new Date(), 'yyyy-MM-dd')
</script>
<style scoped>