next/components/listings/metaItem.vue

9 lines
161 B
Vue
Raw Normal View History

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