<script setup>
import { ref, watch } from 'vue';
const value = ref('');
watch(value, (newValue) => {
if (newValue) {
value.value = newValue.charAt(0).toUpperCase() + newValue.slice(1);
}
});
</script>
<template>
<input type="text" v-model="value" />
</template>