working on vcard display

This commit is contained in:
2025-10-07 21:47:49 +02:00
parent 3e8c3f1d3a
commit f6a8734614
9 changed files with 66 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
<script>
import { extra } from '../../vcard.js';
let { code } = $props();
let field = $derived(extra(code));
</script>
{#if field}
<span class={field.name}>
{field.value}
</span>
{/if}