JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "InputLabel.vue"
Full Path: /var/www/laravel_filter/vendor/laravel/breeze/stubs/inertia-vue-ts/resources/js/Components/InputLabel.vue
File size: 274 bytes
MIME-type: text/html
Charset: utf-8
<script setup lang="ts">
defineProps<{
value?: string;
}>();
</script>
<template>
<label class="block font-medium text-sm text-gray-700 dark:text-gray-300">
<span v-if="value">{{ value }}</span>
<span v-else><slot /></span>
</label>
</template>