Changed DayJS Namespace

This commit is contained in:
2024-01-05 18:17:50 +01:00
parent 61793838bb
commit 8822854040
10 changed files with 34 additions and 34 deletions

View File

@@ -1,5 +1,5 @@
<script setup>
import * as dayjs from "dayjs";
import * as 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>