Changed DayJS Namespace

This commit is contained in:
2024-01-05 18:24:58 +01:00
parent 8822854040
commit d62fc5d668
11 changed files with 35 additions and 35 deletions

View File

@@ -1,5 +1,5 @@
<script setup>
import * as dayJS from "dayjs";
import dayjs from "dayjs";
definePageMeta({
middleware: "auth"
@@ -128,7 +128,7 @@ const statementColumns = [
</span>
</template>
<template #date-data="{row}">
{{dayJS(row.date).format("DD.MM.YY")}}
{{dayjs(row.date).format("DD.MM.YY")}}
</template>
</UTable>
</template>