html vue input enabled

<template>
  <div>
    <label for="userInput">Enter something:</label>
    <input
      type="text"
      id="userInput"
      v-model="inputValue"
      @input="handleInput"
    />
    <p>You entered: {{ inputValue }}</p>
  </div>
</template>

<script>
export default {
  data() {
    return {
      inputValue: '',
    };
  },
  methods: {
    handleInput() {
      // Custom logic can be added here if needed
    },
  },
};
</script>

<style scoped>
/ Add any necessary styles for the component /
</style>