next/components/listings/metaItem.vue
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 8ec7a09193
feat(components): create reusable components to be used for listing stories
this includes - individual story information - the list itself (duh) - a component for displaying key-value pairs delimited by `: `
2023-09-26 22:30:30 -04:00

9 lines
161 B
Vue

<script setup lang="ts">
const props = defineProps<{ label?: string }>()
</script>
<template>
<span>
<b>{{ label }}</b>: <slot/>
</span>
</template>