Finished list render system

This commit is contained in:
2025-12-17 16:02:20 -05:00
parent 278690e094
commit 43763853f8
4 changed files with 137 additions and 121 deletions

View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import { onMounted } from 'vue';
defineProps<{
date: Date
}>()
onMounted(async () => {
})
</script>
<template>
Hello
</template>