TheInput.vue 327 B

12345678910111213141516171819
  1. <script setup lang="ts">
  2. const modelValue = defineModel()
  3. </script>
  4. <template>
  5. <input
  6. id="input"
  7. v-model="modelValue"
  8. type="text"
  9. v-bind="$attrs"
  10. p="x-4 y-2"
  11. w="250px"
  12. text="center"
  13. bg="transparent"
  14. border="~ rounded gray-200 dark:gray-700"
  15. outline="none active:none"
  16. >
  17. </template>