14 lines
292 B
Vue
14 lines
292 B
Vue
<template>
|
|
<span v-if="label" class="text-xs line-clamp-2 max-w-fit px-1 text-center min-h-[2rem]">{{ label }}</span>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
label: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
}
|
|
});
|
|
</script>
|