Property.vue 653 B

1234567891011121314151617181920
  1. <template>
  2. <li class="m-0 px-0 py-4 first:pt-0 last:pb-0">
  3. <dl class="m-0 flex flex-wrap items-center gap-x-3 gap-y-2">
  4. <dt class="sr-only">Name</dt>
  5. <dd>
  6. <code v-text="name"></code>
  7. </dd>
  8. <dt class="sr-only">Type</dt>
  9. <dd class="font-mono text-xs text-zinc-500" v-text="type"></dd>
  10. <dt class="sr-only">Description</dt>
  11. <dd class="w-full flex-none [&>:first-child]:mt-0 [&>:last-child]:mb-0">
  12. <slot/>
  13. </dd>
  14. </dl>
  15. </li>
  16. </template>
  17. <script setup>
  18. const props = defineProps(['name', 'type']);
  19. </script>