fix build errors

This commit is contained in:
Vri 🌈 2023-06-17 21:24:25 +02:00
parent 84bb335b90
commit 7b06a5a789
Signed by: vrifox
GPG key ID: D40098E5B60B2197
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { type Papers } from './Papers.vue'
import { type Papers } from './PaperList.vue'
export default {
updated() {

View file

@ -58,7 +58,7 @@ export default {
openPaper() {
},
date(paperDate: String) {
date(paperDate: string) {
const date = new Date(paperDate)
return new Intl.DateTimeFormat('de-DE', { dateStyle: 'full' }).format(date)
},