This commit is contained in:
taskylizard 2025-06-27 22:54:07 +00:00
parent df4eecc405
commit 16bf6230c0
No known key found for this signature in database
GPG key ID: 1820131ED1A24120
57 changed files with 54 additions and 3461 deletions

View file

@ -1,6 +1,6 @@
<!-- eslint-disable vue/require-v-for-key -->
<script setup lang="ts">
import { data as posts } from './posts.data'
import { data } from './posts.data'
const formatDate = (raw: string): string => {
const date = new Date(raw)
@ -9,6 +9,8 @@ const formatDate = (raw: string): string => {
day: 'numeric'
})
}
const posts: any = data
</script>
<template>