10 lines
158 B
Vue
10 lines
158 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{ label?: string }>();
|
|
</script>
|
|
|
|
<template>
|
|
<span>
|
|
<b>{{ label }}</b> : <slot />
|
|
</span>
|
|
</template>
|