mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
13 lines
249 B
Vue
13 lines
249 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
value: String,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<label class="block font-medium text-sm text-white">
|
|
<span v-if="value">{{ value }}</span>
|
|
<span v-else><slot /></span>
|
|
</label>
|
|
</template>
|